aboutsummaryrefslogtreecommitdiffstats
path: root/library/moment/src/lib/create/date-from-array.js
diff options
context:
space:
mode:
Diffstat (limited to 'library/moment/src/lib/create/date-from-array.js')
-rw-r--r--library/moment/src/lib/create/date-from-array.js19
1 files changed, 0 insertions, 19 deletions
diff --git a/library/moment/src/lib/create/date-from-array.js b/library/moment/src/lib/create/date-from-array.js
deleted file mode 100644
index 349eebcc4..000000000
--- a/library/moment/src/lib/create/date-from-array.js
+++ /dev/null
@@ -1,19 +0,0 @@
-export function createDate (y, m, d, h, M, s, ms) {
- //can't just apply() to create a date:
- //http://stackoverflow.com/questions/181348/instantiating-a-javascript-object-by-calling-prototype-constructor-apply
- var date = new Date(y, m, d, h, M, s, ms);
-
- //the date constructor doesn't accept years < 1970
- if (y < 1970) {
- date.setFullYear(y);
- }
- return date;
-}
-
-export function createUTCDate (y) {
- var date = new Date(Date.UTC.apply(null, arguments));
- if (y < 1970) {
- date.setUTCFullYear(y);
- }
- return date;
-}