mirror of
https://github.com/gwenhael-le-moine/ledgerrb.git
synced 2025-01-11 08:01:03 +01:00
11 lines
246 B
JavaScript
11 lines
246 B
JavaScript
|
var Benchmark = require('benchmark'),
|
||
|
moment = require("./../moment.js"),
|
||
|
base = moment('2013-05-25');
|
||
|
|
||
|
module.exports = {
|
||
|
name: 'clone',
|
||
|
onComplete: function(){console.log('done');},
|
||
|
fn: function(){base.clone();},
|
||
|
async: true
|
||
|
};
|