jsPerf.app is an online JavaScript performance benchmark test runner & jsperf.com mirror. It is a complete rewrite in homage to the once excellent jsperf.com now with hopefully a more modern & maintainable codebase.
jsperf.com URLs are mirrored at the same path, e.g:
https://jsperf.com/negative-modulo/2
Can be accessed at:
https://jsperf.app/negative-modulo/2
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/lodash.js/4.6.1/lodash.min.js"></script>
var oldObject = {
a: {a:1,b:"",c:123},
b: {a:2,b:"",c:123},
c: {a:3,b:"",c:123},
d: {a:4,b:"",c:123},
e: {a:5,b:"",c:123},
f: {a:6,b:"",c:123},
g: [7, 8, 9]
};
var jsonObject = JSON.stringify(oldObject);
function clone(obj) {
if(obj === null || typeof obj !== 'object')
return obj;
var target = obj instanceof Array ? [] : {};
for (var i in obj) {
target[i] = clone(obj[i]);
}
return target;
}
Object.defineProperties(Object, {
'extend': {
'configurable': true,
'enumerable': false,
'value': function extend(what, wit) {
var extObj, witKeys = Object.keys(wit);
extObj = Object.keys(what).length ? Object.clone(what) : {};
witKeys.forEach(function(key) {
Object.defineProperty(extObj, key, Object.getOwnPropertyDescriptor(wit, key));
});
return extObj;
},
'writable': true
},
'clone': {
'configurable': true,
'enumerable': false,
'value': function clone(obj) {
return Object.extend({}, obj);
},
'writable': true
}
});
function isObjInArray(obj, array, func){
for(var i=0; i<array.length; i++){
var objPlace = func(array[i]) || array[i];
if(objPlace === obj)
return ~i;
}
return false;
}
function customClon(original, circleRefs){
circleRefs = circleRefs || [];
var copy;
// undefined, null and all simple type: string, number..
if (undefined === original || null === original || 'object' !== typeof original) return original;
// Handle Date
if (original instanceof Date) {
copy = new Date();
copy.setTime(original.getTime());
return copy;
}
// Handle Object
if (original instanceof Object) {
// is a circular ref?
var isIn = isObjInArray(original, circleRefs, function(el){ return el.original;});
if(isIn){
return circleRefs[~isIn].copy;
}
// array or normal object
copy = original instanceof Array ? [] : Object.create(original.constructor.prototype);
circleRefs.push({original: original, copy: copy});
for (var attr in original) {
if (original.hasOwnProperty(attr)) copy[attr] = customClon(original[attr], circleRefs);
}
return copy;
}
}
Ready to run.
Test | Ops/sec | |
---|---|---|
jQuery.extend() deep |
| ready |
JSON stringify/parse |
| ready |
JSON parse |
| ready |
clone function |
| ready |
ES5 Object.clone |
| ready |
stringify eval |
| ready |
customCloneDeep |
| ready |
lodash cloneDeep |
| ready |
You can edit these tests or add more tests to this page by appending /edit to the URL.