Describe the bug
it raises an error when called like:
moment.utc(value, moment.ISO_8601, true);
Expected behavior
Create a jMoment object!
Additional context
I got rid of the error by some stupid workaround, but it should be implemented
function makeMoment(input, format, lang, strict, utc) {
// if called with formats like moment.ISO8601
if (typeof format === "function" || format === moment0.ISO_8601) format = "";
//...
Describe the bug it raises an error when called like:
moment.utc(value, moment.ISO_8601, true);
Expected behavior Create a jMoment object!
Additional context I got rid of the error by some stupid workaround, but it should be implemented