just-clone

deep copies objects and arrays

Downloads in past

Stats

StarsIssuesVersionUpdatedCreatedSize
just-clone
6.2.0a year ago7 years agoMinified + gzip package size for just-clone in KB

Readme

just-clone

Part of a library of zero-dependency npm modules that do just do one thing. Guilt-free utilities for every occasion.
🍦 Try it
npm install just-clone
yarn add just-clone

Deep copies objects, arrays, maps and sets
// Deep copies objects and arrays, doesn't clone functions

import clone from 'just-clone';

var arr = [1, 2, 3];
var subObj = { aa: 1 };
var obj = { a: 3, b: 5, c: arr, d: subObj };
var objClone = clone(obj);
arr.push(4);
objClone.d.bb = 2;
obj; // {a: 3, b: 5, c: [1, 2, 3, 4], d: {aa: 1}}
objClone; // {a: 3, b: 5, c: [1, 2, 3], d: {aa: 1, bb: 2}}