mirror of
https://github.com/fspc/Yellow-Bike-Database.git
synced 2025-02-23 09:13:23 -05:00
13 lines
236 B
JavaScript
13 lines
236 B
JavaScript
|
var Benchmark = require('benchmark'),
|
||
|
moment = require('./../moment.js'),
|
||
|
base = new Date();
|
||
|
|
||
|
module.exports = {
|
||
|
name: 'fromDateUtc',
|
||
|
onComplete: function(){},
|
||
|
fn: function(){
|
||
|
moment.utc(base);
|
||
|
},
|
||
|
async: true
|
||
|
};
|