Remove deepcopy dependency
This commit is contained in:
@@ -0,0 +1,3 @@
|
||||
export function deepcopy(x: any) {
|
||||
return JSON.parse(JSON.stringify(x));
|
||||
}
|
||||
Reference in New Issue
Block a user
@@ -0,0 +1,3 @@
|
||||
export function deepcopy(x: any) {
|
||||
return JSON.parse(JSON.stringify(x));
|
||||
}
|
||||