apollodec/Apollo/bower_components/moment/benchmarks/clone.js
venbatechnologies@gmail.com d06b1c0cba status file
2017-12-07 11:31:25 +05:30

11 lines
246 B
JavaScript
Executable File

var Benchmark = require('benchmark'),
moment = require("./../moment.js"),
base = moment('2013-05-25');
module.exports = {
name: 'clone',
onComplete: function(){console.log('done');},
fn: function(){base.clone();},
async: true
};