summaryrefslogtreecommitdiffstats
path: root/js/vendor/momentjs/src/lib/create/utc.js
diff options
context:
space:
mode:
Diffstat (limited to 'js/vendor/momentjs/src/lib/create/utc.js')
-rw-r--r--js/vendor/momentjs/src/lib/create/utc.js5
1 files changed, 5 insertions, 0 deletions
diff --git a/js/vendor/momentjs/src/lib/create/utc.js b/js/vendor/momentjs/src/lib/create/utc.js
new file mode 100644
index 000000000..96139530e
--- /dev/null
+++ b/js/vendor/momentjs/src/lib/create/utc.js
@@ -0,0 +1,5 @@
+import { createLocalOrUTC } from './from-anything';
+
+export function createUTC (input, format, locale, strict) {
+ return createLocalOrUTC(input, format, locale, strict, true).utc();
+}