some events refacturing

This commit is contained in:
Mario Vavti
2015-11-18 23:50:42 +01:00
parent 68da4d90dc
commit e4145deeb7
456 changed files with 129080 additions and 6363 deletions

View File

@@ -0,0 +1,12 @@
var Benchmark = require('benchmark'),
moment = require('./../moment.js'),
base = new Date();
module.exports = {
name: 'fromDateUtc',
onComplete: function(){},
fn: function(){
moment.utc(base);
},
async: true
};