mirror of
https://github.com/fspc/Yellow-Bike-Database.git
synced 2025-02-23 09:13:23 -05: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
|
|
};
|