ESM compatible deepcopy
npm install deepcopy-esmThis is a fully-ESM compatible version of the deepcopy package.
``sh`
npm i deepcopy-esm
This package exports the API a little bit differently than deepcopy does:
`TypeScript
import {deepCopy} from 'deepcopy-esm';
const someObject = {};
const myCopy = deepCopy(someObject);
``
For all other docs, see https://www.npmjs.com/package/deepcopy directly.