/**
* Deeply clones an object or an array.
*
* @paramsomething - The object to clone.
* @returns A deep clone of the provided value.
*
* @public
*/functionclone(something) {
returnJSON.parse(JSON.stringify(something));
}
export { clone };
//# sourceMappingURL=clone.js.map