r = moment(m.format(format), format);
assert.equal(r.month(), m.month(), 'month ' + i + ' fmt ' + format);
r = moment(m.format(format).toLocaleUpperCase(), format);
- assert.equal(r.month(), m.month(), 'month ' + i + ' fmt ' + format + ' upper');
+ assert.equal(
+ r.month(),
+ m.month(),
+ 'month ' + i + ' fmt ' + format + ' upper'
+ );
r = moment(m.format(format).toLocaleLowerCase(), format);
assert.equal(
r.month(),
);
r = moment(m.format(format), format, true);
- assert.equal(r.month(), m.month(), 'month ' + i + ' fmt ' + format + ' strict');
+ assert.equal(
+ r.month(),
+ m.month(),
+ 'month ' + i + ' fmt ' + format + ' strict'
+ );
r = moment(m.format(format).toLocaleUpperCase(), format, true);
- assert.equal(r.month(), m.month(), 'month ' + i + ' fmt ' + format + ' upper strict');
+ assert.equal(
+ r.month(),
+ m.month(),
+ 'month ' + i + ' fmt ' + format + ' upper strict'
+ );
r = moment(m.format(format).toLocaleLowerCase(), format, true);
assert.equal(
r.month(),