Test name | Executions per second |
---|---|
Lodash deep clone | 1986753.4 Ops/sec |
JSON.stringfy | 1775136.5 Ops/sec |
<script src='https://cdn.jsdelivr.net/npm/lodash@4.17.20/lodash.min.js'></script>
window.obj = { foo: 'some string', bar: 'another', subObj: { hey: 'you', what: 'are you doing' } }
const objClone = _.cloneDeep(window.obj);
const objClone = JSON.parse(JSON.stringify(window.obj));