summaryrefslogtreecommitdiffstats
path: root/js/vendor/momentjs/benchmarks/clone.js
blob: e8a61f3d9edab92dc966fd1bc3ae819c4466fac3 (plain)
1
2
3
4
5
6
7
8
9
10
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
};