Another solution is to change moment.utc as fallow:
jMoment.utc = function (input, format, lang, strict) {
if (typeof lang === "boolean") {
strict = lang;
lang = undefined;
}
return makeMoment(input, format, lang, strict, true);
};
but I think the provided solution is more general.
fixes issue #66
Another solution is to change moment.utc as fallow:
but I think the provided solution is more general.