(input, format, locale, strict)
| 102 | } |
| 103 | |
| 104 | function createUTC(input, format, locale, strict) { |
| 105 | return createLocalOrUTC(input, format, locale, strict, true).utc(); |
| 106 | } |
| 107 | |
| 108 | function defaultParsingFlags() { |
| 109 | // We need to deep clone this object. |
no test coverage detected