mirror of
https://github.com/stylersnico/librenms.git
synced 2026-07-13 16:06:29 +02: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
|
|
};
|