mirror of
https://github.com/fspc/Yellow-Bike-Database.git
synced 2025-02-23 17:23:23 -05:00
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
|
||
|
};
|