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/makeDuration.js
2015-11-18 23:50:42 +01:00

12 lines
225 B
JavaScript

var Benchmark = require('benchmark'),
moment = require('./../moment.js');
module.exports = {
name: 'makeDuration',
onComplete: function(){},
fn: function(){
moment.duration(5, 'years');
},
async: true
};