1
0
mirror of https://github.com/fspc/Yellow-Bike-Database.git synced 2025-02-23 17:23:23 -05:00

12 lines
225 B
JavaScript
Raw Normal View History

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