You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

10 lines
256 B

  1. var Benchmark = require('benchmark'),
  2. moment = require("./../moment.js"),
  3. base = moment('2013-05-25');
  4. module.exports = {
  5. name: 'clone',
  6. onComplete: function(){console.log('done');},
  7. fn: function(){base.clone();},
  8. async: true
  9. };