mirror of
https://github.com/itflow-org/itflow
synced 2026-03-01 11:24:52 +00:00
13 lines
229 B
JavaScript
13 lines
229 B
JavaScript
var Benchmark = require('benchmark'),
|
|
moment = require('./../moment.js'),
|
|
base = new Date();
|
|
|
|
module.exports = {
|
|
name: 'fromDate',
|
|
onComplete: function(){},
|
|
fn: function(){
|
|
moment(base);
|
|
},
|
|
async: true
|
|
};
|