UNPKG

snappy-utils

Version:

A lightweight and efficient JavaScript utility library packed with commonly used helper functions like capitalize, debounce, deepClone, flattenArray, isPrime, and more. Ideal for developers who want a simple yet powerful toolkit to streamline everyday cod

5 lines (4 loc) 106 B
function deepClone(obj) { return JSON.parse(JSON.stringify(obj)); } module.exports = deepClone;