ledgerrb/public/app/bower_components/moment/benchmarks/clone.js

11 lines
246 B
JavaScript
Raw Normal View History

2014-09-30 12:29:53 +02:00
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
};