import { Moment } from './constructor';
-import { get, set } from './get-set';
+import { get } from './get-set';
import { smartSetUTCMonth } from '../units/month';
import { createDuration } from '../duration/create';
import { deprecateSimple } from '../utils/deprecate';
return mom;
}
var d, uts;
- console.log('SET', arguments);
+ // console.log('SET', arguments);
if (msCoef != null) {
// this is one of ms, second, minute, hour
uts = mom.valueOf();
setOffsetToParsedOffset,
hasAlignedHourOffset,
isDaylightSavingTime,
- isDaylightSavingTimeShifted,
getSetZone,
isLocal,
isUtcOffset,
}
return rollup(rollupOpts).then(function (bundle) {
- var result = bundle.generate(bundleOpts);
+ return bundle.generate(bundleOpts);
+ }).then(function (result) {
return result.code;
});
}