11 lines
226 B
JavaScript
11 lines
226 B
JavaScript
|
|
var Benchmark = require('benchmark'),
|
||
|
|
moment = require("./../moment.js"),
|
||
|
|
base = moment('2013-05-25');
|
||
|
|
|
||
|
|
module.exports = {
|
||
|
|
name: 'clone',
|
||
|
|
onComplete: function(){},
|
||
|
|
fn: function(){base.clone();},
|
||
|
|
async: true
|
||
|
|
};
|