mirror of
https://github.com/librenms/librenms.git
synced 2024-10-07 16:52:45 +00: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
|
|
};
|