<script src='https://cdnjs.cloudflare.com/ajax/libs/lodash.js/4.17.5/lodash.min.js'></script>
var MyObject = {
description: 'Creates a deep copy of source, which should be an object or an array.',
myNumber: 123456789,
myBoolean: true,
jayson: {
stringify: 'JSON.stringify() method converts a JavaScript value to a JSON string....',
parse: 'JSON.parse() method parses a JSON string...'
}
};
var myCopy = null;
function cloneDeep(entity, cache = new WeakMap) {
const referenceTypes = ['Array', 'Object', 'Map', 'Set', 'Date'];
const entityType = Object.prototype.toString.call(entity);
if (
!new RegExp(referenceTypes.join('|')).test(entityType) ||
entity instanceof WeakMap ||
entity instanceof WeakSet
) return entity;
if (cache.has(entity)) {
return cache.get(entity);
}
const c = new entity.constructor;
if (entity instanceof Map) {
entity.forEach((value, key) => c.set(cloneDeep(key), cloneDeep(value)));
}
if (entity instanceof Set) {
entity.forEach((value) => c.add(cloneDeep(value)));
}
if (entity instanceof Date) {
return new Date(entity);
}
cache.set(entity, c);
return Object.assign(c, Object.keys(entity).map((prop) => ({ [prop]: cloneDeep(entity[prop], cache) })));
}
myCopy = _.cloneDeep(MyObject);
myCopy = JSON.parse(JSON.stringify(MyObject));
Object.freeze(MyObject); myCopy = { MyObject };
myCopy = cloneDeep(MyObject)
--enable-precise-memory-info
flag.
Test case name | Result |
---|---|
Lodash cloneDeep | |
Json clone | |
freeze and destructure | |
Vanilla cloneDeep |
Test name | Executions per second |
---|---|
Lodash cloneDeep | 193583.1 Ops/sec |
Json clone | 110152.7 Ops/sec |
freeze and destructure | 566525.1 Ops/sec |
Vanilla cloneDeep | 28503.2 Ops/sec |
Let's dive into the world of JavaScript microbenchmarks!
Benchmark Definition JSON
The benchmark definition JSON contains four test cases:
Lodash cloneDeep
: Tests Lodash's cloneDeep
function to create a deep copy of an object.Json clone
: Tests the built-in JSON.parse(JSON.stringify())
method to clone an object.freeze and destructure
: Tests the Object.freeze()
method followed by destructuring to create a copy of an object.Vanilla cloneDeep
: Tests a vanilla implementation of a deep cloning function, similar to Lodash's cloneDeep
.Options Compared
The benchmark compares four options:
JSON.parse(JSON.stringify())
method, which is a simple but effective way to clone objects.Object.freeze()
followed by destructuring to create a copy of an object.cloneDeep
.Pros and Cons
Here are some pros and cons for each option:
WeakMap
or WeakSet
).Other Considerations
When choosing a deep cloning method, consider the following factors:
JSON.parse(JSON.stringify())
or freeze and destructure
might be sufficient. For more complex objects, Lodash's cloneDeep
or a custom implementation like Vanilla cloneDeep
might be necessary.cloneDeep
or a well-optimized custom implementation like Vanilla cloneDeep
.Library and Purpose
The freeze()
method from the ECMAScript standard freezes an object, making it immutable. The JSON.parse(JSON.stringify())
method parses a JSON string and creates a new object with the same properties as the original object. Lodash's cloneDeep()
function creates a deep copy of an object by recursively cloning all its properties.
Special JavaScript features or syntax mentioned in this benchmark are:
freeze and destructure
approach.