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

13 lines
229 B
JavaScript
Raw Normal View History

var Benchmark = require('benchmark'),
moment = require('./../moment.js'),
base = new Date();
module.exports = {
name: 'fromDate',
onComplete: function(){},
fn: function(){
moment(base);
},
async: true
};