1.0.0 • Published 5 years ago

object-copy-lite v1.0.0

Weekly downloads
-
License
MIT
Repository
github
Last release
5 years ago

Object copy lite

jsDelivr Hits jsDelivr Hits jsDelivr Hits

Copy objects, arrays and any other values

Install

Using npm

$ npm install object-copy-lite

Using Yarn

$ yarn add object-copy-lite

How to use it

const objectCopy = require('object-copy-lite');

const a = { hello: "World !" };
const b = objectCopy(a);

console.log(b); // { hello: "World !" }

b.hello = "Tout le monde !";

console.log(a); // { hello: "World !" }
console.log(b); // { hello: "Tout le monde !" }
1.0.0

5 years ago

0.0.3

5 years ago

0.0.2

5 years ago

0.0.1

5 years ago