mirror of
https://github.com/xibyte/jsketcher
synced 2025-12-08 17:33:15 +01:00
6 lines
128 B
JavaScript
6 lines
128 B
JavaScript
export const EMPTY_OBJECT = Object.freeze({});
|
|
|
|
export function clone(object) {
|
|
return JSON.parse(JSON.stringify(object));
|
|
}
|
|
|