component-clone

Object clone supporting `date`, `regexp`, `array` and `object` types.

Usage no npm install needed!

<script type="module">
  import componentClone from 'https://cdn.skypack.dev/component-clone';
</script>

README

clone

Object clone supporting date, regexp, array and object types.

Example

var obj = clone({
  a: 'b',
  c: [
    new Date(),
    'tobi',
    'jane'
  ]
})

API

clone(obj)

Clones obj recursively and returns it.

License

MIT