copyjs

copyjs is for deep copies of javascript objects

Usage no npm install needed!

<script type="module">
  import copyjs from 'https://cdn.skypack.dev/copyjs';
</script>

README

copyjs

copyjs"> copyjs is for deep copies of javascript objects

npm install copyjs
var a = {
  val: 15,
  business: 'isGood'
};

var b = copy(a);

#  object a { val: 15, business: 'isGood' }
#  object b { val: 15, business: 'isGood' }

b.val = 8000;
b.business = 'isBetter';

#  object a { val: 15, business: 'isGood' }
#  object b { val: 8000, business: 'isBetter' }

license: BSD

notes: I would have used https://npmjs.org/package/copy but I couldn't find/see their source Ok, that source is linked now https://github.com/evlun/copy and they even support packed arrays and buffers efficiently.