This repository has been archived on 2024-08-19. You can view files and clone it, but cannot push or open issues or pull requests.
Files
core/library/moment/benchmarks/clone.js
2015-11-18 23:50:42 +01:00

11 lines
226 B
JavaScript

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
};