UNPKG

@empathyco/x-components

Version:
15 lines (13 loc) 299 B
/** * Deeply clones an object or an array. * * @param something - The object to clone. * @returns A deep clone of the provided value. * * @public */ function clone(something) { return JSON.parse(JSON.stringify(something)); } export { clone }; //# sourceMappingURL=clone.js.map