7 lines
118 B
TypeScript
7 lines
118 B
TypeScript
|
export class Tools {
|
||
|
|
||
|
public static copy(element: any): any {
|
||
|
return JSON.parse(JSON.stringify(element));
|
||
|
}
|
||
|
}
|