UNPKG

tailwindcss

Version:

A utility-first CSS framework for rapidly building custom user interfaces.

12 lines (9 loc) 283 B
export function cloneDeep(value) { if (Array.isArray(value)) { return value.map((child) => cloneDeep(child)) } if (typeof value === 'object' && value !== null) { return Object.fromEntries(Object.entries(value).map(([k, v]) => [k, cloneDeep(v)])) } return value }