This website requires JavaScript.
Explore
Help
Register
Sign In
agtic
/
keycloak_theme
Watch
1
Star
0
Fork
0
You've already forked keycloak_theme
Code
Issues
Pull Requests
Actions
Packages
Projects
Releases
Wiki
Activity
keycloak_theme
/
src
/
lib
/
tools
/
deepClone.ts
4 lines
88 B
TypeScript
Raw
Normal View
History
Unescape
Escape
Implement a mechanism to overload kcContext
2021-06-28 04:04:48 +02:00
export
function
deepClone
<
T
>
(
arg
:
T
)
:
T
{
Remove eslint and run prettier (changelog ignore)
2021-10-11 21:35:40 +02:00
return
JSON
.
parse
(
JSON
.
stringify
(
arg
)
)
;
}
Reference in New Issue
Copy Permalink