blob: 6081f077cc99e89f6372dd63572684581278b5ee (
plain) (
blame)
1
2
3
4
5
|
import { createLocalOrUTC } from './from-anything';
export function createUTC(input, format, locale, strict) {
return createLocalOrUTC(input, format, locale, strict, true).utc();
}
|