14 lines
281 B
JavaScript
14 lines
281 B
JavaScript
|
|
var Benchmark = require('benchmark'),
|
||
|
|
moment = require("./../moment.js");
|
||
|
|
|
||
|
|
module.exports = {
|
||
|
|
name: 'load missing locale',
|
||
|
|
tests: [{
|
||
|
|
fn: function() {
|
||
|
|
// falls back to en
|
||
|
|
moment.locale('en-US');
|
||
|
|
},
|
||
|
|
async: true,
|
||
|
|
}],
|
||
|
|
};
|