aboutsummaryrefslogtreecommitdiffstats
path: root/library/moment/benchmarks/clone.js
blob: ac516bec2d5285e9c01bbe0f03e325d4d69e99f0 (plain) (blame)
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(){},
  fn: function(){base.clone();},
  async: true
};