@mikeal/realistic-structured-clone

A pure JS implementation of the structured clone algorithm (or at least something pretty close to that)

Usage no npm install needed!

<script type="module">
  import mikealRealisticStructuredClone from 'https://cdn.skypack.dev/@mikeal/realistic-structured-clone';
</script>

README

Realistic Structured Clone

39837 9311

This is a fork of https://github.com/dumbmatter/realistic-structured-clone with Node.js support removed in order to bring down the bundle size in the browser. Recent versions of Node.js have a much better/faster way to do deep clones using v8 serialize/deserialize.

This is a pure JS implementation of the structured clone algorithm (or at least something pretty close to that).

Use

Install through npm:

$ npm install @mikeal/realistic-structured-clone

Then use it:

// First load the module
// (Use Browserify or something if you're targeting the web)
var structuredClone = require('@mikeal/realistic-structured-clone');

// Clone a variable (will throw a DataCloneError for invalid input)
var clonedX = structuredClone(x);

License

Apache 2.0