You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
40 lines
1.1 KiB
40 lines
1.1 KiB
var Benchmark = require('benchmark'),
|
|
moment = require("./../moment.js"),
|
|
base = moment('2013-05-25');
|
|
|
|
|
|
module.exports = {
|
|
name: 'clone',
|
|
tests: {
|
|
isBefore_true: {
|
|
onComplete: function(){},
|
|
fn: function(){base.isBefore('2013-06-25');},
|
|
async: true
|
|
},
|
|
isBefore_self: {
|
|
onComplete: function(){},
|
|
fn: function(){base.isBefore('2013-05-25');},
|
|
async: true
|
|
},
|
|
isBefore_false: {
|
|
onComplete: function(){},
|
|
fn: function(){base.isBefore('2013-04-25');},
|
|
async: true
|
|
},
|
|
isAfter_true: {
|
|
onComplete: function(){},
|
|
fn: function(){base.isAfter('2013-04-25');},
|
|
async: true
|
|
},
|
|
isAfter_self: {
|
|
onComplete: function(){},
|
|
fn: function(){base.isAfter('2013-05-25');},
|
|
async: true
|
|
},
|
|
isAfter_false: {
|
|
onComplete: function(){},
|
|
fn: function(){base.isAfter('2013-06-25');},
|
|
async: true
|
|
}
|
|
}
|
|
};
|
|
|