mirror of
https://github.com/itflow-org/itflow
synced 2026-03-02 03:44:53 +00:00
12 lines
225 B
JavaScript
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
|
|
};
|