summaryrefslogtreecommitdiff
path: root/node_modules/locutus/php/datetime
diff options
context:
space:
mode:
Diffstat (limited to 'node_modules/locutus/php/datetime')
-rw-r--r--node_modules/locutus/php/datetime/checkdate.js19
-rw-r--r--node_modules/locutus/php/datetime/checkdate.js.map1
-rw-r--r--node_modules/locutus/php/datetime/date.js318
-rw-r--r--node_modules/locutus/php/datetime/date.js.map1
-rw-r--r--node_modules/locutus/php/datetime/date_parse.js38
-rw-r--r--node_modules/locutus/php/datetime/date_parse.js.map1
-rw-r--r--node_modules/locutus/php/datetime/getdate.js35
-rw-r--r--node_modules/locutus/php/datetime/getdate.js.map1
-rw-r--r--node_modules/locutus/php/datetime/gettimeofday.js33
-rw-r--r--node_modules/locutus/php/datetime/gettimeofday.js.map1
-rw-r--r--node_modules/locutus/php/datetime/gmdate.js21
-rw-r--r--node_modules/locutus/php/datetime/gmdate.js.map1
-rw-r--r--node_modules/locutus/php/datetime/gmmktime.js46
-rw-r--r--node_modules/locutus/php/datetime/gmmktime.js.map1
-rw-r--r--node_modules/locutus/php/datetime/gmstrftime.js19
-rw-r--r--node_modules/locutus/php/datetime/gmstrftime.js.map1
-rw-r--r--node_modules/locutus/php/datetime/idate.js71
-rw-r--r--node_modules/locutus/php/datetime/idate.js.map1
-rw-r--r--node_modules/locutus/php/datetime/index.js18
-rw-r--r--node_modules/locutus/php/datetime/index.js.map1
-rw-r--r--node_modules/locutus/php/datetime/microtime.js37
-rw-r--r--node_modules/locutus/php/datetime/microtime.js.map1
-rw-r--r--node_modules/locutus/php/datetime/mktime.js77
-rw-r--r--node_modules/locutus/php/datetime/mktime.js.map1
-rw-r--r--node_modules/locutus/php/datetime/strftime.js198
-rw-r--r--node_modules/locutus/php/datetime/strftime.js.map1
-rw-r--r--node_modules/locutus/php/datetime/strptime.js361
-rw-r--r--node_modules/locutus/php/datetime/strptime.js.map1
-rw-r--r--node_modules/locutus/php/datetime/strtotime.js273
-rw-r--r--node_modules/locutus/php/datetime/strtotime.js.map1
-rw-r--r--node_modules/locutus/php/datetime/time.js15
-rw-r--r--node_modules/locutus/php/datetime/time.js.map1
32 files changed, 1595 insertions, 0 deletions
diff --git a/node_modules/locutus/php/datetime/checkdate.js b/node_modules/locutus/php/datetime/checkdate.js
new file mode 100644
index 0000000..6e30179
--- /dev/null
+++ b/node_modules/locutus/php/datetime/checkdate.js
@@ -0,0 +1,19 @@
+"use strict";
+
+module.exports = function checkdate(m, d, y) {
+ // discuss at: http://locutus.io/php/checkdate/
+ // original by: Kevin van Zonneveld (http://kvz.io)
+ // improved by: Pyerre
+ // improved by: Theriault (https://github.com/Theriault)
+ // example 1: checkdate(12, 31, 2000)
+ // returns 1: true
+ // example 2: checkdate(2, 29, 2001)
+ // returns 2: false
+ // example 3: checkdate(3, 31, 2008)
+ // returns 3: true
+ // example 4: checkdate(1, 390, 2000)
+ // returns 4: false
+
+ return m > 0 && m < 13 && y > 0 && y < 32768 && d > 0 && d <= new Date(y, m, 0).getDate();
+};
+//# sourceMappingURL=checkdate.js.map \ No newline at end of file
diff --git a/node_modules/locutus/php/datetime/checkdate.js.map b/node_modules/locutus/php/datetime/checkdate.js.map
new file mode 100644
index 0000000..e1aab81
--- /dev/null
+++ b/node_modules/locutus/php/datetime/checkdate.js.map
@@ -0,0 +1 @@
+{"version":3,"sources":["../../../src/php/datetime/checkdate.js"],"names":["module","exports","checkdate","m","d","y","Date","getDate"],"mappings":";;AAAAA,OAAOC,OAAP,GAAiB,SAASC,SAAT,CAAoBC,CAApB,EAAuBC,CAAvB,EAA0BC,CAA1B,EAA6B;AAC5C;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA,SAAOF,IAAI,CAAJ,IAASA,IAAI,EAAb,IAAmBE,IAAI,CAAvB,IAA4BA,IAAI,KAAhC,IAAyCD,IAAI,CAA7C,IAAkDA,KAAM,IAAIE,IAAJ,CAASD,CAAT,EAAYF,CAAZ,EAAe,CAAf,CAAD,CAC3DI,OAD2D,EAA9D;AAED,CAhBD","file":"checkdate.js","sourcesContent":["module.exports = function checkdate (m, d, y) {\n // discuss at: http://locutus.io/php/checkdate/\n // original by: Kevin van Zonneveld (http://kvz.io)\n // improved by: Pyerre\n // improved by: Theriault (https://github.com/Theriault)\n // example 1: checkdate(12, 31, 2000)\n // returns 1: true\n // example 2: checkdate(2, 29, 2001)\n // returns 2: false\n // example 3: checkdate(3, 31, 2008)\n // returns 3: true\n // example 4: checkdate(1, 390, 2000)\n // returns 4: false\n\n return m > 0 && m < 13 && y > 0 && y < 32768 && d > 0 && d <= (new Date(y, m, 0))\n .getDate()\n}\n"]} \ No newline at end of file
diff --git a/node_modules/locutus/php/datetime/date.js b/node_modules/locutus/php/datetime/date.js
new file mode 100644
index 0000000..39d6db1
--- /dev/null
+++ b/node_modules/locutus/php/datetime/date.js
@@ -0,0 +1,318 @@
+'use strict';
+
+module.exports = function date(format, timestamp) {
+ // discuss at: http://locutus.io/php/date/
+ // original by: Carlos R. L. Rodrigues (http://www.jsfromhell.com)
+ // original by: gettimeofday
+ // parts by: Peter-Paul Koch (http://www.quirksmode.org/js/beat.html)
+ // improved by: Kevin van Zonneveld (http://kvz.io)
+ // improved by: MeEtc (http://yass.meetcweb.com)
+ // improved by: Brad Touesnard
+ // improved by: Tim Wiel
+ // improved by: Bryan Elliott
+ // improved by: David Randall
+ // improved by: Theriault (https://github.com/Theriault)
+ // improved by: Theriault (https://github.com/Theriault)
+ // improved by: Brett Zamir (http://brett-zamir.me)
+ // improved by: Theriault (https://github.com/Theriault)
+ // improved by: Thomas Beaucourt (http://www.webapp.fr)
+ // improved by: JT
+ // improved by: Theriault (https://github.com/Theriault)
+ // improved by: Rafał Kukawski (http://blog.kukawski.pl)
+ // improved by: Theriault (https://github.com/Theriault)
+ // input by: Brett Zamir (http://brett-zamir.me)
+ // input by: majak
+ // input by: Alex
+ // input by: Martin
+ // input by: Alex Wilson
+ // input by: Haravikk
+ // bugfixed by: Kevin van Zonneveld (http://kvz.io)
+ // bugfixed by: majak
+ // bugfixed by: Kevin van Zonneveld (http://kvz.io)
+ // bugfixed by: Brett Zamir (http://brett-zamir.me)
+ // bugfixed by: omid (http://locutus.io/php/380:380#comment_137122)
+ // bugfixed by: Chris (http://www.devotis.nl/)
+ // note 1: Uses global: locutus to store the default timezone
+ // note 1: Although the function potentially allows timezone info
+ // note 1: (see notes), it currently does not set
+ // note 1: per a timezone specified by date_default_timezone_set(). Implementers might use
+ // note 1: $locutus.currentTimezoneOffset and
+ // note 1: $locutus.currentTimezoneDST set by that function
+ // note 1: in order to adjust the dates in this function
+ // note 1: (or our other date functions!) accordingly
+ // example 1: date('H:m:s \\m \\i\\s \\m\\o\\n\\t\\h', 1062402400)
+ // returns 1: '07:09:40 m is month'
+ // example 2: date('F j, Y, g:i a', 1062462400)
+ // returns 2: 'September 2, 2003, 12:26 am'
+ // example 3: date('Y W o', 1062462400)
+ // returns 3: '2003 36 2003'
+ // example 4: var $x = date('Y m d', (new Date()).getTime() / 1000)
+ // example 4: $x = $x + ''
+ // example 4: var $result = $x.length // 2009 01 09
+ // returns 4: 10
+ // example 5: date('W', 1104534000)
+ // returns 5: '52'
+ // example 6: date('B t', 1104534000)
+ // returns 6: '999 31'
+ // example 7: date('W U', 1293750000.82); // 2010-12-31
+ // returns 7: '52 1293750000'
+ // example 8: date('W', 1293836400); // 2011-01-01
+ // returns 8: '52'
+ // example 9: date('W Y-m-d', 1293974054); // 2011-01-02
+ // returns 9: '52 2011-01-02'
+ // test: skip-1 skip-2 skip-5
+
+ var jsdate, f;
+ // Keep this here (works, but for code commented-out below for file size reasons)
+ // var tal= [];
+ var txtWords = ['Sun', 'Mon', 'Tues', 'Wednes', 'Thurs', 'Fri', 'Satur', 'January', 'February', 'March', 'April', 'May', 'June', 'July', 'August', 'September', 'October', 'November', 'December'];
+ // trailing backslash -> (dropped)
+ // a backslash followed by any character (including backslash) -> the character
+ // empty string -> empty string
+ var formatChr = /\\?(.?)/gi;
+ var formatChrCb = function formatChrCb(t, s) {
+ return f[t] ? f[t]() : s;
+ };
+ var _pad = function _pad(n, c) {
+ n = String(n);
+ while (n.length < c) {
+ n = '0' + n;
+ }
+ return n;
+ };
+ f = {
+ // Day
+ d: function d() {
+ // Day of month w/leading 0; 01..31
+ return _pad(f.j(), 2);
+ },
+ D: function D() {
+ // Shorthand day name; Mon...Sun
+ return f.l().slice(0, 3);
+ },
+ j: function j() {
+ // Day of month; 1..31
+ return jsdate.getDate();
+ },
+ l: function l() {
+ // Full day name; Monday...Sunday
+ return txtWords[f.w()] + 'day';
+ },
+ N: function N() {
+ // ISO-8601 day of week; 1[Mon]..7[Sun]
+ return f.w() || 7;
+ },
+ S: function S() {
+ // Ordinal suffix for day of month; st, nd, rd, th
+ var j = f.j();
+ var i = j % 10;
+ if (i <= 3 && parseInt(j % 100 / 10, 10) === 1) {
+ i = 0;
+ }
+ return ['st', 'nd', 'rd'][i - 1] || 'th';
+ },
+ w: function w() {
+ // Day of week; 0[Sun]..6[Sat]
+ return jsdate.getDay();
+ },
+ z: function z() {
+ // Day of year; 0..365
+ var a = new Date(f.Y(), f.n() - 1, f.j());
+ var b = new Date(f.Y(), 0, 1);
+ return Math.round((a - b) / 864e5);
+ },
+
+ // Week
+ W: function W() {
+ // ISO-8601 week number
+ var a = new Date(f.Y(), f.n() - 1, f.j() - f.N() + 3);
+ var b = new Date(a.getFullYear(), 0, 4);
+ return _pad(1 + Math.round((a - b) / 864e5 / 7), 2);
+ },
+
+ // Month
+ F: function F() {
+ // Full month name; January...December
+ return txtWords[6 + f.n()];
+ },
+ m: function m() {
+ // Month w/leading 0; 01...12
+ return _pad(f.n(), 2);
+ },
+ M: function M() {
+ // Shorthand month name; Jan...Dec
+ return f.F().slice(0, 3);
+ },
+ n: function n() {
+ // Month; 1...12
+ return jsdate.getMonth() + 1;
+ },
+ t: function t() {
+ // Days in month; 28...31
+ return new Date(f.Y(), f.n(), 0).getDate();
+ },
+
+ // Year
+ L: function L() {
+ // Is leap year?; 0 or 1
+ var j = f.Y();
+ return j % 4 === 0 & j % 100 !== 0 | j % 400 === 0;
+ },
+ o: function o() {
+ // ISO-8601 year
+ var n = f.n();
+ var W = f.W();
+ var Y = f.Y();
+ return Y + (n === 12 && W < 9 ? 1 : n === 1 && W > 9 ? -1 : 0);
+ },
+ Y: function Y() {
+ // Full year; e.g. 1980...2010
+ return jsdate.getFullYear();
+ },
+ y: function y() {
+ // Last two digits of year; 00...99
+ return f.Y().toString().slice(-2);
+ },
+
+ // Time
+ a: function a() {
+ // am or pm
+ return jsdate.getHours() > 11 ? 'pm' : 'am';
+ },
+ A: function A() {
+ // AM or PM
+ return f.a().toUpperCase();
+ },
+ B: function B() {
+ // Swatch Internet time; 000..999
+ var H = jsdate.getUTCHours() * 36e2;
+ // Hours
+ var i = jsdate.getUTCMinutes() * 60;
+ // Minutes
+ // Seconds
+ var s = jsdate.getUTCSeconds();
+ return _pad(Math.floor((H + i + s + 36e2) / 86.4) % 1e3, 3);
+ },
+ g: function g() {
+ // 12-Hours; 1..12
+ return f.G() % 12 || 12;
+ },
+ G: function G() {
+ // 24-Hours; 0..23
+ return jsdate.getHours();
+ },
+ h: function h() {
+ // 12-Hours w/leading 0; 01..12
+ return _pad(f.g(), 2);
+ },
+ H: function H() {
+ // 24-Hours w/leading 0; 00..23
+ return _pad(f.G(), 2);
+ },
+ i: function i() {
+ // Minutes w/leading 0; 00..59
+ return _pad(jsdate.getMinutes(), 2);
+ },
+ s: function s() {
+ // Seconds w/leading 0; 00..59
+ return _pad(jsdate.getSeconds(), 2);
+ },
+ u: function u() {
+ // Microseconds; 000000-999000
+ return _pad(jsdate.getMilliseconds() * 1000, 6);
+ },
+
+ // Timezone
+ e: function e() {
+ // Timezone identifier; e.g. Atlantic/Azores, ...
+ // The following works, but requires inclusion of the very large
+ // timezone_abbreviations_list() function.
+ /* return that.date_default_timezone_get();
+ */
+ var msg = 'Not supported (see source code of date() for timezone on how to add support)';
+ throw new Error(msg);
+ },
+ I: function I() {
+ // DST observed?; 0 or 1
+ // Compares Jan 1 minus Jan 1 UTC to Jul 1 minus Jul 1 UTC.
+ // If they are not equal, then DST is observed.
+ var a = new Date(f.Y(), 0);
+ // Jan 1
+ var c = Date.UTC(f.Y(), 0);
+ // Jan 1 UTC
+ var b = new Date(f.Y(), 6);
+ // Jul 1
+ // Jul 1 UTC
+ var d = Date.UTC(f.Y(), 6);
+ return a - c !== b - d ? 1 : 0;
+ },
+ O: function O() {
+ // Difference to GMT in hour format; e.g. +0200
+ var tzo = jsdate.getTimezoneOffset();
+ var a = Math.abs(tzo);
+ return (tzo > 0 ? '-' : '+') + _pad(Math.floor(a / 60) * 100 + a % 60, 4);
+ },
+ P: function P() {
+ // Difference to GMT w/colon; e.g. +02:00
+ var O = f.O();
+ return O.substr(0, 3) + ':' + O.substr(3, 2);
+ },
+ T: function T() {
+ // The following works, but requires inclusion of the very
+ // large timezone_abbreviations_list() function.
+ /* var abbr, i, os, _default;
+ if (!tal.length) {
+ tal = that.timezone_abbreviations_list();
+ }
+ if ($locutus && $locutus.default_timezone) {
+ _default = $locutus.default_timezone;
+ for (abbr in tal) {
+ for (i = 0; i < tal[abbr].length; i++) {
+ if (tal[abbr][i].timezone_id === _default) {
+ return abbr.toUpperCase();
+ }
+ }
+ }
+ }
+ for (abbr in tal) {
+ for (i = 0; i < tal[abbr].length; i++) {
+ os = -jsdate.getTimezoneOffset() * 60;
+ if (tal[abbr][i].offset === os) {
+ return abbr.toUpperCase();
+ }
+ }
+ }
+ */
+ return 'UTC';
+ },
+ Z: function Z() {
+ // Timezone offset in seconds (-43200...50400)
+ return -jsdate.getTimezoneOffset() * 60;
+ },
+
+ // Full Date/Time
+ c: function c() {
+ // ISO-8601 date.
+ return 'Y-m-d\\TH:i:sP'.replace(formatChr, formatChrCb);
+ },
+ r: function r() {
+ // RFC 2822
+ return 'D, d M Y H:i:s O'.replace(formatChr, formatChrCb);
+ },
+ U: function U() {
+ // Seconds since UNIX epoch
+ return jsdate / 1000 | 0;
+ }
+ };
+
+ var _date = function _date(format, timestamp) {
+ jsdate = timestamp === undefined ? new Date() // Not provided
+ : timestamp instanceof Date ? new Date(timestamp) // JS Date()
+ : new Date(timestamp * 1000) // UNIX timestamp (auto-convert to int)
+ ;
+ return format.replace(formatChr, formatChrCb);
+ };
+
+ return _date(format, timestamp);
+};
+//# sourceMappingURL=date.js.map \ No newline at end of file
diff --git a/node_modules/locutus/php/datetime/date.js.map b/node_modules/locutus/php/datetime/date.js.map
new file mode 100644
index 0000000..0d37bad
--- /dev/null
+++ b/node_modules/locutus/php/datetime/date.js.map
@@ -0,0 +1 @@
+{"version":3,"sources":["../../../src/php/datetime/date.js"],"names":["module","exports","date","format","timestamp","jsdate","f","txtWords","formatChr","formatChrCb","t","s","_pad","n","c","String","length","d","j","D","l","slice","getDate","w","N","S","i","parseInt","getDay","z","a","Date","Y","b","Math","round","W","getFullYear","F","m","M","getMonth","L","o","y","toString","getHours","A","toUpperCase","B","H","getUTCHours","getUTCMinutes","getUTCSeconds","floor","g","G","h","getMinutes","getSeconds","u","getMilliseconds","e","msg","Error","I","UTC","O","tzo","getTimezoneOffset","abs","P","substr","T","Z","replace","r","U","_date","undefined"],"mappings":";;AAAAA,OAAOC,OAAP,GAAiB,SAASC,IAAT,CAAeC,MAAf,EAAuBC,SAAvB,EAAkC;AACjD;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA,MAAIC,MAAJ,EAAYC,CAAZ;AACA;AACA;AACA,MAAIC,WAAW,CACb,KADa,EACN,KADM,EACC,MADD,EACS,QADT,EACmB,OADnB,EAC4B,KAD5B,EACmC,OADnC,EAEb,SAFa,EAEF,UAFE,EAEU,OAFV,EAEmB,OAFnB,EAE4B,KAF5B,EAEmC,MAFnC,EAGb,MAHa,EAGL,QAHK,EAGK,WAHL,EAGkB,SAHlB,EAG6B,UAH7B,EAGyC,UAHzC,CAAf;AAKA;AACA;AACA;AACA,MAAIC,YAAY,WAAhB;AACA,MAAIC,cAAc,SAAdA,WAAc,CAAUC,CAAV,EAAaC,CAAb,EAAgB;AAChC,WAAOL,EAAEI,CAAF,IAAOJ,EAAEI,CAAF,GAAP,GAAgBC,CAAvB;AACD,GAFD;AAGA,MAAIC,OAAO,SAAPA,IAAO,CAAUC,CAAV,EAAaC,CAAb,EAAgB;AACzBD,QAAIE,OAAOF,CAAP,CAAJ;AACA,WAAOA,EAAEG,MAAF,GAAWF,CAAlB,EAAqB;AACnBD,UAAI,MAAMA,CAAV;AACD;AACD,WAAOA,CAAP;AACD,GAND;AAOAP,MAAI;AACF;AACAW,OAAG,aAAY;AACb;AACA,aAAOL,KAAKN,EAAEY,CAAF,EAAL,EAAY,CAAZ,CAAP;AACD,KALC;AAMFC,OAAG,aAAY;AACb;AACA,aAAOb,EAAEc,CAAF,GACJC,KADI,CACE,CADF,EACK,CADL,CAAP;AAED,KAVC;AAWFH,OAAG,aAAY;AACb;AACA,aAAOb,OAAOiB,OAAP,EAAP;AACD,KAdC;AAeFF,OAAG,aAAY;AACb;AACA,aAAOb,SAASD,EAAEiB,CAAF,EAAT,IAAkB,KAAzB;AACD,KAlBC;AAmBFC,OAAG,aAAY;AACb;AACA,aAAOlB,EAAEiB,CAAF,MAAS,CAAhB;AACD,KAtBC;AAuBFE,OAAG,aAAY;AACb;AACA,UAAIP,IAAIZ,EAAEY,CAAF,EAAR;AACA,UAAIQ,IAAIR,IAAI,EAAZ;AACA,UAAIQ,KAAK,CAAL,IAAUC,SAAUT,IAAI,GAAL,GAAY,EAArB,EAAyB,EAAzB,MAAiC,CAA/C,EAAkD;AAChDQ,YAAI,CAAJ;AACD;AACD,aAAO,CAAC,IAAD,EAAO,IAAP,EAAa,IAAb,EAAmBA,IAAI,CAAvB,KAA6B,IAApC;AACD,KA/BC;AAgCFH,OAAG,aAAY;AACb;AACA,aAAOlB,OAAOuB,MAAP,EAAP;AACD,KAnCC;AAoCFC,OAAG,aAAY;AACb;AACA,UAAIC,IAAI,IAAIC,IAAJ,CAASzB,EAAE0B,CAAF,EAAT,EAAgB1B,EAAEO,CAAF,KAAQ,CAAxB,EAA2BP,EAAEY,CAAF,EAA3B,CAAR;AACA,UAAIe,IAAI,IAAIF,IAAJ,CAASzB,EAAE0B,CAAF,EAAT,EAAgB,CAAhB,EAAmB,CAAnB,CAAR;AACA,aAAOE,KAAKC,KAAL,CAAW,CAACL,IAAIG,CAAL,IAAU,KAArB,CAAP;AACD,KAzCC;;AA2CF;AACAG,OAAG,aAAY;AACb;AACA,UAAIN,IAAI,IAAIC,IAAJ,CAASzB,EAAE0B,CAAF,EAAT,EAAgB1B,EAAEO,CAAF,KAAQ,CAAxB,EAA2BP,EAAEY,CAAF,KAAQZ,EAAEkB,CAAF,EAAR,GAAgB,CAA3C,CAAR;AACA,UAAIS,IAAI,IAAIF,IAAJ,CAASD,EAAEO,WAAF,EAAT,EAA0B,CAA1B,EAA6B,CAA7B,CAAR;AACA,aAAOzB,KAAK,IAAIsB,KAAKC,KAAL,CAAW,CAACL,IAAIG,CAAL,IAAU,KAAV,GAAkB,CAA7B,CAAT,EAA0C,CAA1C,CAAP;AACD,KAjDC;;AAmDF;AACAK,OAAG,aAAY;AACb;AACA,aAAO/B,SAAS,IAAID,EAAEO,CAAF,EAAb,CAAP;AACD,KAvDC;AAwDF0B,OAAG,aAAY;AACb;AACA,aAAO3B,KAAKN,EAAEO,CAAF,EAAL,EAAY,CAAZ,CAAP;AACD,KA3DC;AA4DF2B,OAAG,aAAY;AACb;AACA,aAAOlC,EAAEgC,CAAF,GACJjB,KADI,CACE,CADF,EACK,CADL,CAAP;AAED,KAhEC;AAiEFR,OAAG,aAAY;AACb;AACA,aAAOR,OAAOoC,QAAP,KAAoB,CAA3B;AACD,KApEC;AAqEF/B,OAAG,aAAY;AACb;AACA,aAAQ,IAAIqB,IAAJ,CAASzB,EAAE0B,CAAF,EAAT,EAAgB1B,EAAEO,CAAF,EAAhB,EAAuB,CAAvB,CAAD,CACJS,OADI,EAAP;AAED,KAzEC;;AA2EF;AACAoB,OAAG,aAAY;AACb;AACA,UAAIxB,IAAIZ,EAAE0B,CAAF,EAAR;AACA,aAAOd,IAAI,CAAJ,KAAU,CAAV,GAAcA,IAAI,GAAJ,KAAY,CAA1B,GAA8BA,IAAI,GAAJ,KAAY,CAAjD;AACD,KAhFC;AAiFFyB,OAAG,aAAY;AACb;AACA,UAAI9B,IAAIP,EAAEO,CAAF,EAAR;AACA,UAAIuB,IAAI9B,EAAE8B,CAAF,EAAR;AACA,UAAIJ,IAAI1B,EAAE0B,CAAF,EAAR;AACA,aAAOA,KAAKnB,MAAM,EAAN,IAAYuB,IAAI,CAAhB,GAAoB,CAApB,GAAwBvB,MAAM,CAAN,IAAWuB,IAAI,CAAf,GAAmB,CAAC,CAApB,GAAwB,CAArD,CAAP;AACD,KAvFC;AAwFFJ,OAAG,aAAY;AACb;AACA,aAAO3B,OAAOgC,WAAP,EAAP;AACD,KA3FC;AA4FFO,OAAG,aAAY;AACb;AACA,aAAOtC,EAAE0B,CAAF,GACJa,QADI,GAEJxB,KAFI,CAEE,CAAC,CAFH,CAAP;AAGD,KAjGC;;AAmGF;AACAS,OAAG,aAAY;AACb;AACA,aAAOzB,OAAOyC,QAAP,KAAoB,EAApB,GAAyB,IAAzB,GAAgC,IAAvC;AACD,KAvGC;AAwGFC,OAAG,aAAY;AACb;AACA,aAAOzC,EAAEwB,CAAF,GACJkB,WADI,EAAP;AAED,KA5GC;AA6GFC,OAAG,aAAY;AACb;AACA,UAAIC,IAAI7C,OAAO8C,WAAP,KAAuB,IAA/B;AACA;AACA,UAAIzB,IAAIrB,OAAO+C,aAAP,KAAyB,EAAjC;AACA;AACA;AACA,UAAIzC,IAAIN,OAAOgD,aAAP,EAAR;AACA,aAAOzC,KAAKsB,KAAKoB,KAAL,CAAW,CAACJ,IAAIxB,CAAJ,GAAQf,CAAR,GAAY,IAAb,IAAqB,IAAhC,IAAwC,GAA7C,EAAkD,CAAlD,CAAP;AACD,KAtHC;AAuHF4C,OAAG,aAAY;AACb;AACA,aAAOjD,EAAEkD,CAAF,KAAQ,EAAR,IAAc,EAArB;AACD,KA1HC;AA2HFA,OAAG,aAAY;AACb;AACA,aAAOnD,OAAOyC,QAAP,EAAP;AACD,KA9HC;AA+HFW,OAAG,aAAY;AACb;AACA,aAAO7C,KAAKN,EAAEiD,CAAF,EAAL,EAAY,CAAZ,CAAP;AACD,KAlIC;AAmIFL,OAAG,aAAY;AACb;AACA,aAAOtC,KAAKN,EAAEkD,CAAF,EAAL,EAAY,CAAZ,CAAP;AACD,KAtIC;AAuIF9B,OAAG,aAAY;AACb;AACA,aAAOd,KAAKP,OAAOqD,UAAP,EAAL,EAA0B,CAA1B,CAAP;AACD,KA1IC;AA2IF/C,OAAG,aAAY;AACb;AACA,aAAOC,KAAKP,OAAOsD,UAAP,EAAL,EAA0B,CAA1B,CAAP;AACD,KA9IC;AA+IFC,OAAG,aAAY;AACb;AACA,aAAOhD,KAAKP,OAAOwD,eAAP,KAA2B,IAAhC,EAAsC,CAAtC,CAAP;AACD,KAlJC;;AAoJF;AACAC,OAAG,aAAY;AACb;AACA;AACA;AACA;;AAEA,UAAIC,MAAM,8EAAV;AACA,YAAM,IAAIC,KAAJ,CAAUD,GAAV,CAAN;AACD,KA7JC;AA8JFE,OAAG,aAAY;AACb;AACA;AACA;AACA,UAAInC,IAAI,IAAIC,IAAJ,CAASzB,EAAE0B,CAAF,EAAT,EAAgB,CAAhB,CAAR;AACA;AACA,UAAIlB,IAAIiB,KAAKmC,GAAL,CAAS5D,EAAE0B,CAAF,EAAT,EAAgB,CAAhB,CAAR;AACA;AACA,UAAIC,IAAI,IAAIF,IAAJ,CAASzB,EAAE0B,CAAF,EAAT,EAAgB,CAAhB,CAAR;AACA;AACA;AACA,UAAIf,IAAIc,KAAKmC,GAAL,CAAS5D,EAAE0B,CAAF,EAAT,EAAgB,CAAhB,CAAR;AACA,aAASF,IAAIhB,CAAL,KAAamB,IAAIhB,CAAlB,GAAwB,CAAxB,GAA4B,CAAnC;AACD,KA3KC;AA4KFkD,OAAG,aAAY;AACb;AACA,UAAIC,MAAM/D,OAAOgE,iBAAP,EAAV;AACA,UAAIvC,IAAII,KAAKoC,GAAL,CAASF,GAAT,CAAR;AACA,aAAO,CAACA,MAAM,CAAN,GAAU,GAAV,GAAgB,GAAjB,IAAwBxD,KAAKsB,KAAKoB,KAAL,CAAWxB,IAAI,EAAf,IAAqB,GAArB,GAA2BA,IAAI,EAApC,EAAwC,CAAxC,CAA/B;AACD,KAjLC;AAkLFyC,OAAG,aAAY;AACb;AACA,UAAIJ,IAAI7D,EAAE6D,CAAF,EAAR;AACA,aAAQA,EAAEK,MAAF,CAAS,CAAT,EAAY,CAAZ,IAAiB,GAAjB,GAAuBL,EAAEK,MAAF,CAAS,CAAT,EAAY,CAAZ,CAA/B;AACD,KAtLC;AAuLFC,OAAG,aAAY;AACb;AACA;AACA;;;;;;;;;;;;;;;;;;;;;;;AAuBA,aAAO,KAAP;AACD,KAlNC;AAmNFC,OAAG,aAAY;AACb;AACA,aAAO,CAACrE,OAAOgE,iBAAP,EAAD,GAA8B,EAArC;AACD,KAtNC;;AAwNF;AACAvD,OAAG,aAAY;AACb;AACA,aAAO,iBAAiB6D,OAAjB,CAAyBnE,SAAzB,EAAoCC,WAApC,CAAP;AACD,KA5NC;AA6NFmE,OAAG,aAAY;AACb;AACA,aAAO,mBAAmBD,OAAnB,CAA2BnE,SAA3B,EAAsCC,WAAtC,CAAP;AACD,KAhOC;AAiOFoE,OAAG,aAAY;AACb;AACA,aAAOxE,SAAS,IAAT,GAAgB,CAAvB;AACD;AApOC,GAAJ;;AAuOA,MAAIyE,QAAQ,SAARA,KAAQ,CAAU3E,MAAV,EAAkBC,SAAlB,EAA6B;AACvCC,aAAUD,cAAc2E,SAAd,GAA0B,IAAIhD,IAAJ,EAA1B,CAAqC;AAArC,MACL3B,qBAAqB2B,IAAtB,GAA8B,IAAIA,IAAJ,CAAS3B,SAAT,CAA9B,CAAkD;AAAlD,MACA,IAAI2B,IAAJ,CAAS3B,YAAY,IAArB,CAFJ,CAE+B;AAF/B;AAIA,WAAOD,OAAOwE,OAAP,CAAenE,SAAf,EAA0BC,WAA1B,CAAP;AACD,GAND;;AAQA,SAAOqE,MAAM3E,MAAN,EAAcC,SAAd,CAAP;AACD,CApUD","file":"date.js","sourcesContent":["module.exports = function date (format, timestamp) {\n // discuss at: http://locutus.io/php/date/\n // original by: Carlos R. L. Rodrigues (http://www.jsfromhell.com)\n // original by: gettimeofday\n // parts by: Peter-Paul Koch (http://www.quirksmode.org/js/beat.html)\n // improved by: Kevin van Zonneveld (http://kvz.io)\n // improved by: MeEtc (http://yass.meetcweb.com)\n // improved by: Brad Touesnard\n // improved by: Tim Wiel\n // improved by: Bryan Elliott\n // improved by: David Randall\n // improved by: Theriault (https://github.com/Theriault)\n // improved by: Theriault (https://github.com/Theriault)\n // improved by: Brett Zamir (http://brett-zamir.me)\n // improved by: Theriault (https://github.com/Theriault)\n // improved by: Thomas Beaucourt (http://www.webapp.fr)\n // improved by: JT\n // improved by: Theriault (https://github.com/Theriault)\n // improved by: Rafał Kukawski (http://blog.kukawski.pl)\n // improved by: Theriault (https://github.com/Theriault)\n // input by: Brett Zamir (http://brett-zamir.me)\n // input by: majak\n // input by: Alex\n // input by: Martin\n // input by: Alex Wilson\n // input by: Haravikk\n // bugfixed by: Kevin van Zonneveld (http://kvz.io)\n // bugfixed by: majak\n // bugfixed by: Kevin van Zonneveld (http://kvz.io)\n // bugfixed by: Brett Zamir (http://brett-zamir.me)\n // bugfixed by: omid (http://locutus.io/php/380:380#comment_137122)\n // bugfixed by: Chris (http://www.devotis.nl/)\n // note 1: Uses global: locutus to store the default timezone\n // note 1: Although the function potentially allows timezone info\n // note 1: (see notes), it currently does not set\n // note 1: per a timezone specified by date_default_timezone_set(). Implementers might use\n // note 1: $locutus.currentTimezoneOffset and\n // note 1: $locutus.currentTimezoneDST set by that function\n // note 1: in order to adjust the dates in this function\n // note 1: (or our other date functions!) accordingly\n // example 1: date('H:m:s \\\\m \\\\i\\\\s \\\\m\\\\o\\\\n\\\\t\\\\h', 1062402400)\n // returns 1: '07:09:40 m is month'\n // example 2: date('F j, Y, g:i a', 1062462400)\n // returns 2: 'September 2, 2003, 12:26 am'\n // example 3: date('Y W o', 1062462400)\n // returns 3: '2003 36 2003'\n // example 4: var $x = date('Y m d', (new Date()).getTime() / 1000)\n // example 4: $x = $x + ''\n // example 4: var $result = $x.length // 2009 01 09\n // returns 4: 10\n // example 5: date('W', 1104534000)\n // returns 5: '52'\n // example 6: date('B t', 1104534000)\n // returns 6: '999 31'\n // example 7: date('W U', 1293750000.82); // 2010-12-31\n // returns 7: '52 1293750000'\n // example 8: date('W', 1293836400); // 2011-01-01\n // returns 8: '52'\n // example 9: date('W Y-m-d', 1293974054); // 2011-01-02\n // returns 9: '52 2011-01-02'\n // test: skip-1 skip-2 skip-5\n\n var jsdate, f\n // Keep this here (works, but for code commented-out below for file size reasons)\n // var tal= [];\n var txtWords = [\n 'Sun', 'Mon', 'Tues', 'Wednes', 'Thurs', 'Fri', 'Satur',\n 'January', 'February', 'March', 'April', 'May', 'June',\n 'July', 'August', 'September', 'October', 'November', 'December'\n ]\n // trailing backslash -> (dropped)\n // a backslash followed by any character (including backslash) -> the character\n // empty string -> empty string\n var formatChr = /\\\\?(.?)/gi\n var formatChrCb = function (t, s) {\n return f[t] ? f[t]() : s\n }\n var _pad = function (n, c) {\n n = String(n)\n while (n.length < c) {\n n = '0' + n\n }\n return n\n }\n f = {\n // Day\n d: function () {\n // Day of month w/leading 0; 01..31\n return _pad(f.j(), 2)\n },\n D: function () {\n // Shorthand day name; Mon...Sun\n return f.l()\n .slice(0, 3)\n },\n j: function () {\n // Day of month; 1..31\n return jsdate.getDate()\n },\n l: function () {\n // Full day name; Monday...Sunday\n return txtWords[f.w()] + 'day'\n },\n N: function () {\n // ISO-8601 day of week; 1[Mon]..7[Sun]\n return f.w() || 7\n },\n S: function () {\n // Ordinal suffix for day of month; st, nd, rd, th\n var j = f.j()\n var i = j % 10\n if (i <= 3 && parseInt((j % 100) / 10, 10) === 1) {\n i = 0\n }\n return ['st', 'nd', 'rd'][i - 1] || 'th'\n },\n w: function () {\n // Day of week; 0[Sun]..6[Sat]\n return jsdate.getDay()\n },\n z: function () {\n // Day of year; 0..365\n var a = new Date(f.Y(), f.n() - 1, f.j())\n var b = new Date(f.Y(), 0, 1)\n return Math.round((a - b) / 864e5)\n },\n\n // Week\n W: function () {\n // ISO-8601 week number\n var a = new Date(f.Y(), f.n() - 1, f.j() - f.N() + 3)\n var b = new Date(a.getFullYear(), 0, 4)\n return _pad(1 + Math.round((a - b) / 864e5 / 7), 2)\n },\n\n // Month\n F: function () {\n // Full month name; January...December\n return txtWords[6 + f.n()]\n },\n m: function () {\n // Month w/leading 0; 01...12\n return _pad(f.n(), 2)\n },\n M: function () {\n // Shorthand month name; Jan...Dec\n return f.F()\n .slice(0, 3)\n },\n n: function () {\n // Month; 1...12\n return jsdate.getMonth() + 1\n },\n t: function () {\n // Days in month; 28...31\n return (new Date(f.Y(), f.n(), 0))\n .getDate()\n },\n\n // Year\n L: function () {\n // Is leap year?; 0 or 1\n var j = f.Y()\n return j % 4 === 0 & j % 100 !== 0 | j % 400 === 0\n },\n o: function () {\n // ISO-8601 year\n var n = f.n()\n var W = f.W()\n var Y = f.Y()\n return Y + (n === 12 && W < 9 ? 1 : n === 1 && W > 9 ? -1 : 0)\n },\n Y: function () {\n // Full year; e.g. 1980...2010\n return jsdate.getFullYear()\n },\n y: function () {\n // Last two digits of year; 00...99\n return f.Y()\n .toString()\n .slice(-2)\n },\n\n // Time\n a: function () {\n // am or pm\n return jsdate.getHours() > 11 ? 'pm' : 'am'\n },\n A: function () {\n // AM or PM\n return f.a()\n .toUpperCase()\n },\n B: function () {\n // Swatch Internet time; 000..999\n var H = jsdate.getUTCHours() * 36e2\n // Hours\n var i = jsdate.getUTCMinutes() * 60\n // Minutes\n // Seconds\n var s = jsdate.getUTCSeconds()\n return _pad(Math.floor((H + i + s + 36e2) / 86.4) % 1e3, 3)\n },\n g: function () {\n // 12-Hours; 1..12\n return f.G() % 12 || 12\n },\n G: function () {\n // 24-Hours; 0..23\n return jsdate.getHours()\n },\n h: function () {\n // 12-Hours w/leading 0; 01..12\n return _pad(f.g(), 2)\n },\n H: function () {\n // 24-Hours w/leading 0; 00..23\n return _pad(f.G(), 2)\n },\n i: function () {\n // Minutes w/leading 0; 00..59\n return _pad(jsdate.getMinutes(), 2)\n },\n s: function () {\n // Seconds w/leading 0; 00..59\n return _pad(jsdate.getSeconds(), 2)\n },\n u: function () {\n // Microseconds; 000000-999000\n return _pad(jsdate.getMilliseconds() * 1000, 6)\n },\n\n // Timezone\n e: function () {\n // Timezone identifier; e.g. Atlantic/Azores, ...\n // The following works, but requires inclusion of the very large\n // timezone_abbreviations_list() function.\n /* return that.date_default_timezone_get();\n */\n var msg = 'Not supported (see source code of date() for timezone on how to add support)'\n throw new Error(msg)\n },\n I: function () {\n // DST observed?; 0 or 1\n // Compares Jan 1 minus Jan 1 UTC to Jul 1 minus Jul 1 UTC.\n // If they are not equal, then DST is observed.\n var a = new Date(f.Y(), 0)\n // Jan 1\n var c = Date.UTC(f.Y(), 0)\n // Jan 1 UTC\n var b = new Date(f.Y(), 6)\n // Jul 1\n // Jul 1 UTC\n var d = Date.UTC(f.Y(), 6)\n return ((a - c) !== (b - d)) ? 1 : 0\n },\n O: function () {\n // Difference to GMT in hour format; e.g. +0200\n var tzo = jsdate.getTimezoneOffset()\n var a = Math.abs(tzo)\n return (tzo > 0 ? '-' : '+') + _pad(Math.floor(a / 60) * 100 + a % 60, 4)\n },\n P: function () {\n // Difference to GMT w/colon; e.g. +02:00\n var O = f.O()\n return (O.substr(0, 3) + ':' + O.substr(3, 2))\n },\n T: function () {\n // The following works, but requires inclusion of the very\n // large timezone_abbreviations_list() function.\n /* var abbr, i, os, _default;\n if (!tal.length) {\n tal = that.timezone_abbreviations_list();\n }\n if ($locutus && $locutus.default_timezone) {\n _default = $locutus.default_timezone;\n for (abbr in tal) {\n for (i = 0; i < tal[abbr].length; i++) {\n if (tal[abbr][i].timezone_id === _default) {\n return abbr.toUpperCase();\n }\n }\n }\n }\n for (abbr in tal) {\n for (i = 0; i < tal[abbr].length; i++) {\n os = -jsdate.getTimezoneOffset() * 60;\n if (tal[abbr][i].offset === os) {\n return abbr.toUpperCase();\n }\n }\n }\n */\n return 'UTC'\n },\n Z: function () {\n // Timezone offset in seconds (-43200...50400)\n return -jsdate.getTimezoneOffset() * 60\n },\n\n // Full Date/Time\n c: function () {\n // ISO-8601 date.\n return 'Y-m-d\\\\TH:i:sP'.replace(formatChr, formatChrCb)\n },\n r: function () {\n // RFC 2822\n return 'D, d M Y H:i:s O'.replace(formatChr, formatChrCb)\n },\n U: function () {\n // Seconds since UNIX epoch\n return jsdate / 1000 | 0\n }\n }\n\n var _date = function (format, timestamp) {\n jsdate = (timestamp === undefined ? new Date() // Not provided\n : (timestamp instanceof Date) ? new Date(timestamp) // JS Date()\n : new Date(timestamp * 1000) // UNIX timestamp (auto-convert to int)\n )\n return format.replace(formatChr, formatChrCb)\n }\n\n return _date(format, timestamp)\n}\n"]} \ No newline at end of file
diff --git a/node_modules/locutus/php/datetime/date_parse.js b/node_modules/locutus/php/datetime/date_parse.js
new file mode 100644
index 0000000..20df2bf
--- /dev/null
+++ b/node_modules/locutus/php/datetime/date_parse.js
@@ -0,0 +1,38 @@
+'use strict';
+
+module.exports = function date_parse(date) {
+ // eslint-disable-line camelcase
+ // discuss at: http://locutus.io/php/date_parse/
+ // original by: Brett Zamir (http://brett-zamir.me)
+ // example 1: date_parse('2006-12-12 10:00:00')
+ // returns 1: {year : 2006, month: 12, day: 12, hour: 10, minute: 0, second: 0, fraction: 0, is_localtime: false}
+
+ var strtotime = require('../datetime/strtotime');
+ var ts;
+
+ try {
+ ts = strtotime(date);
+ } catch (e) {
+ ts = false;
+ }
+
+ if (!ts) {
+ return false;
+ }
+
+ var dt = new Date(ts * 1000);
+
+ var retObj = {};
+
+ retObj.year = dt.getFullYear();
+ retObj.month = dt.getMonth() + 1;
+ retObj.day = dt.getDate();
+ retObj.hour = dt.getHours();
+ retObj.minute = dt.getMinutes();
+ retObj.second = dt.getSeconds();
+ retObj.fraction = parseFloat('0.' + dt.getMilliseconds());
+ retObj.is_localtime = dt.getTimezoneOffset() !== 0;
+
+ return retObj;
+};
+//# sourceMappingURL=date_parse.js.map \ No newline at end of file
diff --git a/node_modules/locutus/php/datetime/date_parse.js.map b/node_modules/locutus/php/datetime/date_parse.js.map
new file mode 100644
index 0000000..bf66a26
--- /dev/null
+++ b/node_modules/locutus/php/datetime/date_parse.js.map
@@ -0,0 +1 @@
+{"version":3,"sources":["../../../src/php/datetime/date_parse.js"],"names":["module","exports","date_parse","date","strtotime","require","ts","e","dt","Date","retObj","year","getFullYear","month","getMonth","day","getDate","hour","getHours","minute","getMinutes","second","getSeconds","fraction","parseFloat","getMilliseconds","is_localtime","getTimezoneOffset"],"mappings":";;AAAAA,OAAOC,OAAP,GAAiB,SAASC,UAAT,CAAqBC,IAArB,EAA2B;AAAE;AAC5C;AACA;AACA;AACA;;AAEA,MAAIC,YAAYC,QAAQ,uBAAR,CAAhB;AACA,MAAIC,EAAJ;;AAEA,MAAI;AACFA,SAAKF,UAAUD,IAAV,CAAL;AACD,GAFD,CAEE,OAAOI,CAAP,EAAU;AACVD,SAAK,KAAL;AACD;;AAED,MAAI,CAACA,EAAL,EAAS;AACP,WAAO,KAAP;AACD;;AAED,MAAIE,KAAK,IAAIC,IAAJ,CAASH,KAAK,IAAd,CAAT;;AAEA,MAAII,SAAS,EAAb;;AAEAA,SAAOC,IAAP,GAAcH,GAAGI,WAAH,EAAd;AACAF,SAAOG,KAAP,GAAeL,GAAGM,QAAH,KAAgB,CAA/B;AACAJ,SAAOK,GAAP,GAAaP,GAAGQ,OAAH,EAAb;AACAN,SAAOO,IAAP,GAAcT,GAAGU,QAAH,EAAd;AACAR,SAAOS,MAAP,GAAgBX,GAAGY,UAAH,EAAhB;AACAV,SAAOW,MAAP,GAAgBb,GAAGc,UAAH,EAAhB;AACAZ,SAAOa,QAAP,GAAkBC,WAAW,OAAOhB,GAAGiB,eAAH,EAAlB,CAAlB;AACAf,SAAOgB,YAAP,GAAsBlB,GAAGmB,iBAAH,OAA2B,CAAjD;;AAEA,SAAOjB,MAAP;AACD,CAjCD","file":"date_parse.js","sourcesContent":["module.exports = function date_parse (date) { // eslint-disable-line camelcase\n // discuss at: http://locutus.io/php/date_parse/\n // original by: Brett Zamir (http://brett-zamir.me)\n // example 1: date_parse('2006-12-12 10:00:00')\n // returns 1: {year : 2006, month: 12, day: 12, hour: 10, minute: 0, second: 0, fraction: 0, is_localtime: false}\n\n var strtotime = require('../datetime/strtotime')\n var ts\n\n try {\n ts = strtotime(date)\n } catch (e) {\n ts = false\n }\n\n if (!ts) {\n return false\n }\n\n var dt = new Date(ts * 1000)\n\n var retObj = {}\n\n retObj.year = dt.getFullYear()\n retObj.month = dt.getMonth() + 1\n retObj.day = dt.getDate()\n retObj.hour = dt.getHours()\n retObj.minute = dt.getMinutes()\n retObj.second = dt.getSeconds()\n retObj.fraction = parseFloat('0.' + dt.getMilliseconds())\n retObj.is_localtime = dt.getTimezoneOffset() !== 0\n\n return retObj\n}\n"]} \ No newline at end of file
diff --git a/node_modules/locutus/php/datetime/getdate.js b/node_modules/locutus/php/datetime/getdate.js
new file mode 100644
index 0000000..92ac110
--- /dev/null
+++ b/node_modules/locutus/php/datetime/getdate.js
@@ -0,0 +1,35 @@
+'use strict';
+
+module.exports = function getdate(timestamp) {
+ // discuss at: http://locutus.io/php/getdate/
+ // original by: Paulo Freitas
+ // input by: Alex
+ // bugfixed by: Brett Zamir (http://brett-zamir.me)
+ // example 1: getdate(1055901520)
+ // returns 1: {'seconds': 40, 'minutes': 58, 'hours': 1, 'mday': 18, 'wday': 3, 'mon': 6, 'year': 2003, 'yday': 168, 'weekday': 'Wednesday', 'month': 'June', '0': 1055901520}
+
+ var _w = ['Sun', 'Mon', 'Tues', 'Wednes', 'Thurs', 'Fri', 'Satur'];
+ var _m = ['January', 'February', 'March', 'April', 'May', 'June', 'July', 'August', 'September', 'October', 'November', 'December'];
+ var d = typeof timestamp === 'undefined' ? new Date() : timestamp instanceof Date ? new Date(timestamp) // Not provided
+ : new Date(timestamp * 1000) // Javascript Date() // UNIX timestamp (auto-convert to int)
+ ;
+ var w = d.getDay();
+ var m = d.getMonth();
+ var y = d.getFullYear();
+ var r = {};
+
+ r.seconds = d.getSeconds();
+ r.minutes = d.getMinutes();
+ r.hours = d.getHours();
+ r.mday = d.getDate();
+ r.wday = w;
+ r.mon = m + 1;
+ r.year = y;
+ r.yday = Math.floor((d - new Date(y, 0, 1)) / 86400000);
+ r.weekday = _w[w] + 'day';
+ r.month = _m[m];
+ r['0'] = parseInt(d.getTime() / 1000, 10);
+
+ return r;
+};
+//# sourceMappingURL=getdate.js.map \ No newline at end of file
diff --git a/node_modules/locutus/php/datetime/getdate.js.map b/node_modules/locutus/php/datetime/getdate.js.map
new file mode 100644
index 0000000..390aad8
--- /dev/null
+++ b/node_modules/locutus/php/datetime/getdate.js.map
@@ -0,0 +1 @@
+{"version":3,"sources":["../../../src/php/datetime/getdate.js"],"names":["module","exports","getdate","timestamp","_w","_m","d","Date","w","getDay","m","getMonth","y","getFullYear","r","seconds","getSeconds","minutes","getMinutes","hours","getHours","mday","getDate","wday","mon","year","yday","Math","floor","weekday","month","parseInt","getTime"],"mappings":";;AAAAA,OAAOC,OAAP,GAAiB,SAASC,OAAT,CAAkBC,SAAlB,EAA6B;AAC5C;AACA;AACA;AACA;AACA;AACA;;AAEA,MAAIC,KAAK,CACP,KADO,EAEP,KAFO,EAGP,MAHO,EAIP,QAJO,EAKP,OALO,EAMP,KANO,EAOP,OAPO,CAAT;AASA,MAAIC,KAAK,CACP,SADO,EAEP,UAFO,EAGP,OAHO,EAIP,OAJO,EAKP,KALO,EAMP,MANO,EAOP,MAPO,EAQP,QARO,EASP,WATO,EAUP,SAVO,EAWP,UAXO,EAYP,UAZO,CAAT;AAcA,MAAIC,IAAM,OAAOH,SAAP,KAAqB,WAAtB,GAAqC,IAAII,IAAJ,EAArC,GACJJ,qBAAqBI,IAAtB,GAA8B,IAAIA,IAAJ,CAASJ,SAAT,CAA9B,CAAmD;AAAnD,IACA,IAAII,IAAJ,CAASJ,YAAY,IAArB,CAFA,CAE2B;AAF/B;AAIA,MAAIK,IAAIF,EAAEG,MAAF,EAAR;AACA,MAAIC,IAAIJ,EAAEK,QAAF,EAAR;AACA,MAAIC,IAAIN,EAAEO,WAAF,EAAR;AACA,MAAIC,IAAI,EAAR;;AAEAA,IAAEC,OAAF,GAAYT,EAAEU,UAAF,EAAZ;AACAF,IAAEG,OAAF,GAAYX,EAAEY,UAAF,EAAZ;AACAJ,IAAEK,KAAF,GAAUb,EAAEc,QAAF,EAAV;AACAN,IAAEO,IAAF,GAASf,EAAEgB,OAAF,EAAT;AACAR,IAAES,IAAF,GAASf,CAAT;AACAM,IAAEU,GAAF,GAAQd,IAAI,CAAZ;AACAI,IAAEW,IAAF,GAASb,CAAT;AACAE,IAAEY,IAAF,GAASC,KAAKC,KAAL,CAAW,CAACtB,IAAK,IAAIC,IAAJ,CAASK,CAAT,EAAY,CAAZ,EAAe,CAAf,CAAN,IAA4B,QAAvC,CAAT;AACAE,IAAEe,OAAF,GAAYzB,GAAGI,CAAH,IAAQ,KAApB;AACAM,IAAEgB,KAAF,GAAUzB,GAAGK,CAAH,CAAV;AACAI,IAAE,GAAF,IAASiB,SAASzB,EAAE0B,OAAF,KAAc,IAAvB,EAA6B,EAA7B,CAAT;;AAEA,SAAOlB,CAAP;AACD,CArDD","file":"getdate.js","sourcesContent":["module.exports = function getdate (timestamp) {\n // discuss at: http://locutus.io/php/getdate/\n // original by: Paulo Freitas\n // input by: Alex\n // bugfixed by: Brett Zamir (http://brett-zamir.me)\n // example 1: getdate(1055901520)\n // returns 1: {'seconds': 40, 'minutes': 58, 'hours': 1, 'mday': 18, 'wday': 3, 'mon': 6, 'year': 2003, 'yday': 168, 'weekday': 'Wednesday', 'month': 'June', '0': 1055901520}\n\n var _w = [\n 'Sun',\n 'Mon',\n 'Tues',\n 'Wednes',\n 'Thurs',\n 'Fri',\n 'Satur'\n ]\n var _m = [\n 'January',\n 'February',\n 'March',\n 'April',\n 'May',\n 'June',\n 'July',\n 'August',\n 'September',\n 'October',\n 'November',\n 'December'\n ]\n var d = ((typeof timestamp === 'undefined') ? new Date()\n : (timestamp instanceof Date) ? new Date(timestamp) // Not provided\n : new Date(timestamp * 1000) // Javascript Date() // UNIX timestamp (auto-convert to int)\n )\n var w = d.getDay()\n var m = d.getMonth()\n var y = d.getFullYear()\n var r = {}\n\n r.seconds = d.getSeconds()\n r.minutes = d.getMinutes()\n r.hours = d.getHours()\n r.mday = d.getDate()\n r.wday = w\n r.mon = m + 1\n r.year = y\n r.yday = Math.floor((d - (new Date(y, 0, 1))) / 86400000)\n r.weekday = _w[w] + 'day'\n r.month = _m[m]\n r['0'] = parseInt(d.getTime() / 1000, 10)\n\n return r\n}\n"]} \ No newline at end of file
diff --git a/node_modules/locutus/php/datetime/gettimeofday.js b/node_modules/locutus/php/datetime/gettimeofday.js
new file mode 100644
index 0000000..5f55999
--- /dev/null
+++ b/node_modules/locutus/php/datetime/gettimeofday.js
@@ -0,0 +1,33 @@
+"use strict";
+
+module.exports = function gettimeofday(returnFloat) {
+ // discuss at: http://locutus.io/php/gettimeofday/
+ // original by: Brett Zamir (http://brett-zamir.me)
+ // original by: Josh Fraser (http://onlineaspect.com/2007/06/08/auto-detect-a-time-zone-with-javascript/)
+ // parts by: Breaking Par Consulting Inc (http://www.breakingpar.com/bkp/home.nsf/0/87256B280015193F87256CFB006C45F7)
+ // revised by: Theriault (https://github.com/Theriault)
+ // example 1: var $obj = gettimeofday()
+ // example 1: var $result = ('sec' in $obj && 'usec' in $obj && 'minuteswest' in $obj &&80, 'dsttime' in $obj)
+ // returns 1: true
+ // example 2: var $timeStamp = gettimeofday(true)
+ // example 2: var $result = $timeStamp > 1000000000 && $timeStamp < 2000000000
+ // returns 2: true
+
+ var t = new Date();
+ var y = 0;
+
+ if (returnFloat) {
+ return t.getTime() / 1000;
+ }
+
+ // Store current year.
+ y = t.getFullYear();
+ return {
+ sec: t.getUTCSeconds(),
+ usec: t.getUTCMilliseconds() * 1000,
+ minuteswest: t.getTimezoneOffset(),
+ // Compare Jan 1 minus Jan 1 UTC to Jul 1 minus Jul 1 UTC to see if DST is observed.
+ dsttime: 0 + (new Date(y, 0) - Date.UTC(y, 0) !== new Date(y, 6) - Date.UTC(y, 6))
+ };
+};
+//# sourceMappingURL=gettimeofday.js.map \ No newline at end of file
diff --git a/node_modules/locutus/php/datetime/gettimeofday.js.map b/node_modules/locutus/php/datetime/gettimeofday.js.map
new file mode 100644
index 0000000..32db2dd
--- /dev/null
+++ b/node_modules/locutus/php/datetime/gettimeofday.js.map
@@ -0,0 +1 @@
+{"version":3,"sources":["../../../src/php/datetime/gettimeofday.js"],"names":["module","exports","gettimeofday","returnFloat","t","Date","y","getTime","getFullYear","sec","getUTCSeconds","usec","getUTCMilliseconds","minuteswest","getTimezoneOffset","dsttime","UTC"],"mappings":";;AAAAA,OAAOC,OAAP,GAAiB,SAASC,YAAT,CAAuBC,WAAvB,EAAoC;AACnD;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA,MAAIC,IAAI,IAAIC,IAAJ,EAAR;AACA,MAAIC,IAAI,CAAR;;AAEA,MAAIH,WAAJ,EAAiB;AACf,WAAOC,EAAEG,OAAF,KAAc,IAArB;AACD;;AAED;AACAD,MAAIF,EAAEI,WAAF,EAAJ;AACA,SAAO;AACLC,SAAKL,EAAEM,aAAF,EADA;AAELC,UAAMP,EAAEQ,kBAAF,KAAyB,IAF1B;AAGLC,iBAAaT,EAAEU,iBAAF,EAHR;AAIL;AACAC,aAAS,KAAO,IAAIV,IAAJ,CAASC,CAAT,EAAY,CAAZ,CAAD,GAAmBD,KAAKW,GAAL,CAASV,CAAT,EAAY,CAAZ,CAApB,KAA0C,IAAID,IAAJ,CAASC,CAAT,EAAY,CAAZ,CAAD,GAAmBD,KAAKW,GAAL,CAASV,CAAT,EAAY,CAAZ,CAAjE;AALJ,GAAP;AAOD,CA7BD","file":"gettimeofday.js","sourcesContent":["module.exports = function gettimeofday (returnFloat) {\n // discuss at: http://locutus.io/php/gettimeofday/\n // original by: Brett Zamir (http://brett-zamir.me)\n // original by: Josh Fraser (http://onlineaspect.com/2007/06/08/auto-detect-a-time-zone-with-javascript/)\n // parts by: Breaking Par Consulting Inc (http://www.breakingpar.com/bkp/home.nsf/0/87256B280015193F87256CFB006C45F7)\n // revised by: Theriault (https://github.com/Theriault)\n // example 1: var $obj = gettimeofday()\n // example 1: var $result = ('sec' in $obj && 'usec' in $obj && 'minuteswest' in $obj &&80, 'dsttime' in $obj)\n // returns 1: true\n // example 2: var $timeStamp = gettimeofday(true)\n // example 2: var $result = $timeStamp > 1000000000 && $timeStamp < 2000000000\n // returns 2: true\n\n var t = new Date()\n var y = 0\n\n if (returnFloat) {\n return t.getTime() / 1000\n }\n\n // Store current year.\n y = t.getFullYear()\n return {\n sec: t.getUTCSeconds(),\n usec: t.getUTCMilliseconds() * 1000,\n minuteswest: t.getTimezoneOffset(),\n // Compare Jan 1 minus Jan 1 UTC to Jul 1 minus Jul 1 UTC to see if DST is observed.\n dsttime: 0 + (((new Date(y, 0)) - Date.UTC(y, 0)) !== ((new Date(y, 6)) - Date.UTC(y, 6)))\n }\n}\n"]} \ No newline at end of file
diff --git a/node_modules/locutus/php/datetime/gmdate.js b/node_modules/locutus/php/datetime/gmdate.js
new file mode 100644
index 0000000..5910ac2
--- /dev/null
+++ b/node_modules/locutus/php/datetime/gmdate.js
@@ -0,0 +1,21 @@
+'use strict';
+
+module.exports = function gmdate(format, timestamp) {
+ // discuss at: http://locutus.io/php/gmdate/
+ // original by: Brett Zamir (http://brett-zamir.me)
+ // input by: Alex
+ // bugfixed by: Brett Zamir (http://brett-zamir.me)
+ // example 1: gmdate('H:m:s \\m \\i\\s \\m\\o\\n\\t\\h', 1062402400); // Return will depend on your timezone
+ // returns 1: '07:09:40 m is month'
+
+ var date = require('../datetime/date');
+
+ var dt = typeof timestamp === 'undefined' ? new Date() // Not provided
+ : timestamp instanceof Date ? new Date(timestamp) // Javascript Date()
+ : new Date(timestamp * 1000); // UNIX timestamp (auto-convert to int)
+
+ timestamp = Date.parse(dt.toUTCString().slice(0, -4)) / 1000;
+
+ return date(format, timestamp);
+};
+//# sourceMappingURL=gmdate.js.map \ No newline at end of file
diff --git a/node_modules/locutus/php/datetime/gmdate.js.map b/node_modules/locutus/php/datetime/gmdate.js.map
new file mode 100644
index 0000000..825ddc1
--- /dev/null
+++ b/node_modules/locutus/php/datetime/gmdate.js.map
@@ -0,0 +1 @@
+{"version":3,"sources":["../../../src/php/datetime/gmdate.js"],"names":["module","exports","gmdate","format","timestamp","date","require","dt","Date","parse","toUTCString","slice"],"mappings":";;AAAAA,OAAOC,OAAP,GAAiB,SAASC,MAAT,CAAiBC,MAAjB,EAAyBC,SAAzB,EAAoC;AACnD;AACA;AACA;AACA;AACA;AACA;;AAEA,MAAIC,OAAOC,QAAQ,kBAAR,CAAX;;AAEA,MAAIC,KAAK,OAAOH,SAAP,KAAqB,WAArB,GAAmC,IAAII,IAAJ,EAAnC,CAA8C;AAA9C,IACLJ,qBAAqBI,IAArB,GAA4B,IAAIA,IAAJ,CAASJ,SAAT,CAA5B,CAAgD;AAAhD,IACA,IAAII,IAAJ,CAASJ,YAAY,IAArB,CAFJ,CAVmD,CAYpB;;AAE/BA,cAAYI,KAAKC,KAAL,CAAWF,GAAGG,WAAH,GAAiBC,KAAjB,CAAuB,CAAvB,EAA0B,CAAC,CAA3B,CAAX,IAA4C,IAAxD;;AAEA,SAAON,KAAKF,MAAL,EAAaC,SAAb,CAAP;AACD,CAjBD","file":"gmdate.js","sourcesContent":["module.exports = function gmdate (format, timestamp) {\n // discuss at: http://locutus.io/php/gmdate/\n // original by: Brett Zamir (http://brett-zamir.me)\n // input by: Alex\n // bugfixed by: Brett Zamir (http://brett-zamir.me)\n // example 1: gmdate('H:m:s \\\\m \\\\i\\\\s \\\\m\\\\o\\\\n\\\\t\\\\h', 1062402400); // Return will depend on your timezone\n // returns 1: '07:09:40 m is month'\n\n var date = require('../datetime/date')\n\n var dt = typeof timestamp === 'undefined' ? new Date() // Not provided\n : timestamp instanceof Date ? new Date(timestamp) // Javascript Date()\n : new Date(timestamp * 1000) // UNIX timestamp (auto-convert to int)\n\n timestamp = Date.parse(dt.toUTCString().slice(0, -4)) / 1000\n\n return date(format, timestamp)\n}\n"]} \ No newline at end of file
diff --git a/node_modules/locutus/php/datetime/gmmktime.js b/node_modules/locutus/php/datetime/gmmktime.js
new file mode 100644
index 0000000..12bdd96
--- /dev/null
+++ b/node_modules/locutus/php/datetime/gmmktime.js
@@ -0,0 +1,46 @@
+'use strict';
+
+module.exports = function gmmktime() {
+ // discuss at: http://locutus.io/php/gmmktime/
+ // original by: Brett Zamir (http://brett-zamir.me)
+ // original by: mktime
+ // example 1: gmmktime(14, 10, 2, 2, 1, 2008)
+ // returns 1: 1201875002
+ // example 2: gmmktime(0, 0, -1, 1, 1, 1970)
+ // returns 2: -1
+
+ var d = new Date();
+ var r = arguments;
+ var i = 0;
+ var e = ['Hours', 'Minutes', 'Seconds', 'Month', 'Date', 'FullYear'];
+
+ for (i = 0; i < e.length; i++) {
+ if (typeof r[i] === 'undefined') {
+ r[i] = d['getUTC' + e[i]]();
+ // +1 to fix JS months.
+ r[i] += i === 3;
+ } else {
+ r[i] = parseInt(r[i], 10);
+ if (isNaN(r[i])) {
+ return false;
+ }
+ }
+ }
+
+ // Map years 0-69 to 2000-2069 and years 70-100 to 1970-2000.
+ r[5] += r[5] >= 0 ? r[5] <= 69 ? 2e3 : r[5] <= 100 ? 1900 : 0 : 0;
+
+ // Set year, month (-1 to fix JS months), and date.
+ // !This must come before the call to setHours!
+ d.setUTCFullYear(r[5], r[3] - 1, r[4]);
+
+ // Set hours, minutes, and seconds.
+ d.setUTCHours(r[0], r[1], r[2]);
+
+ var time = d.getTime();
+
+ // Divide milliseconds by 1000 to return seconds and drop decimal.
+ // Add 1 second if negative or it'll be off from PHP by 1 second.
+ return (time / 1e3 >> 0) - (time < 0);
+};
+//# sourceMappingURL=gmmktime.js.map \ No newline at end of file
diff --git a/node_modules/locutus/php/datetime/gmmktime.js.map b/node_modules/locutus/php/datetime/gmmktime.js.map
new file mode 100644
index 0000000..720add9
--- /dev/null
+++ b/node_modules/locutus/php/datetime/gmmktime.js.map
@@ -0,0 +1 @@
+{"version":3,"sources":["../../../src/php/datetime/gmmktime.js"],"names":["module","exports","gmmktime","d","Date","r","arguments","i","e","length","parseInt","isNaN","setUTCFullYear","setUTCHours","time","getTime"],"mappings":";;AAAAA,OAAOC,OAAP,GAAiB,SAASC,QAAT,GAAqB;AACpC;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA,MAAIC,IAAI,IAAIC,IAAJ,EAAR;AACA,MAAIC,IAAIC,SAAR;AACA,MAAIC,IAAI,CAAR;AACA,MAAIC,IAAI,CAAC,OAAD,EAAU,SAAV,EAAqB,SAArB,EAAgC,OAAhC,EAAyC,MAAzC,EAAiD,UAAjD,CAAR;;AAEA,OAAKD,IAAI,CAAT,EAAYA,IAAIC,EAAEC,MAAlB,EAA0BF,GAA1B,EAA+B;AAC7B,QAAI,OAAOF,EAAEE,CAAF,CAAP,KAAgB,WAApB,EAAiC;AAC/BF,QAAEE,CAAF,IAAOJ,EAAE,WAAWK,EAAED,CAAF,CAAb,GAAP;AACA;AACAF,QAAEE,CAAF,KAASA,MAAM,CAAf;AACD,KAJD,MAIO;AACLF,QAAEE,CAAF,IAAOG,SAASL,EAAEE,CAAF,CAAT,EAAe,EAAf,CAAP;AACA,UAAII,MAAMN,EAAEE,CAAF,CAAN,CAAJ,EAAiB;AACf,eAAO,KAAP;AACD;AACF;AACF;;AAED;AACAF,IAAE,CAAF,KAASA,EAAE,CAAF,KAAQ,CAAR,GAAaA,EAAE,CAAF,KAAQ,EAAR,GAAa,GAAb,GAAoBA,EAAE,CAAF,KAAQ,GAAR,GAAc,IAAd,GAAqB,CAAtD,GAA4D,CAArE;;AAEA;AACA;AACAF,IAAES,cAAF,CAAiBP,EAAE,CAAF,CAAjB,EAAuBA,EAAE,CAAF,IAAO,CAA9B,EAAiCA,EAAE,CAAF,CAAjC;;AAEA;AACAF,IAAEU,WAAF,CAAcR,EAAE,CAAF,CAAd,EAAoBA,EAAE,CAAF,CAApB,EAA0BA,EAAE,CAAF,CAA1B;;AAEA,MAAIS,OAAOX,EAAEY,OAAF,EAAX;;AAEA;AACA;AACA,SAAO,CAACD,OAAO,GAAP,IAAc,CAAf,KAAqBA,OAAO,CAA5B,CAAP;AACD,CA1CD","file":"gmmktime.js","sourcesContent":["module.exports = function gmmktime () {\n // discuss at: http://locutus.io/php/gmmktime/\n // original by: Brett Zamir (http://brett-zamir.me)\n // original by: mktime\n // example 1: gmmktime(14, 10, 2, 2, 1, 2008)\n // returns 1: 1201875002\n // example 2: gmmktime(0, 0, -1, 1, 1, 1970)\n // returns 2: -1\n\n var d = new Date()\n var r = arguments\n var i = 0\n var e = ['Hours', 'Minutes', 'Seconds', 'Month', 'Date', 'FullYear']\n\n for (i = 0; i < e.length; i++) {\n if (typeof r[i] === 'undefined') {\n r[i] = d['getUTC' + e[i]]()\n // +1 to fix JS months.\n r[i] += (i === 3)\n } else {\n r[i] = parseInt(r[i], 10)\n if (isNaN(r[i])) {\n return false\n }\n }\n }\n\n // Map years 0-69 to 2000-2069 and years 70-100 to 1970-2000.\n r[5] += (r[5] >= 0 ? (r[5] <= 69 ? 2e3 : (r[5] <= 100 ? 1900 : 0)) : 0)\n\n // Set year, month (-1 to fix JS months), and date.\n // !This must come before the call to setHours!\n d.setUTCFullYear(r[5], r[3] - 1, r[4])\n\n // Set hours, minutes, and seconds.\n d.setUTCHours(r[0], r[1], r[2])\n\n var time = d.getTime()\n\n // Divide milliseconds by 1000 to return seconds and drop decimal.\n // Add 1 second if negative or it'll be off from PHP by 1 second.\n return (time / 1e3 >> 0) - (time < 0)\n}\n"]} \ No newline at end of file
diff --git a/node_modules/locutus/php/datetime/gmstrftime.js b/node_modules/locutus/php/datetime/gmstrftime.js
new file mode 100644
index 0000000..7953981
--- /dev/null
+++ b/node_modules/locutus/php/datetime/gmstrftime.js
@@ -0,0 +1,19 @@
+'use strict';
+
+module.exports = function gmstrftime(format, timestamp) {
+ // discuss at: http://locutus.io/php/gmstrftime/
+ // original by: Brett Zamir (http://brett-zamir.me)
+ // input by: Alex
+ // bugfixed by: Brett Zamir (http://brett-zamir.me)
+ // example 1: gmstrftime("%A", 1062462400)
+ // returns 1: 'Tuesday'
+
+ var strftime = require('../datetime/strftime');
+
+ var _date = typeof timestamp === 'undefined' ? new Date() : timestamp instanceof Date ? new Date(timestamp) : new Date(timestamp * 1000);
+
+ timestamp = Date.parse(_date.toUTCString().slice(0, -4)) / 1000;
+
+ return strftime(format, timestamp);
+};
+//# sourceMappingURL=gmstrftime.js.map \ No newline at end of file
diff --git a/node_modules/locutus/php/datetime/gmstrftime.js.map b/node_modules/locutus/php/datetime/gmstrftime.js.map
new file mode 100644
index 0000000..e852aff
--- /dev/null
+++ b/node_modules/locutus/php/datetime/gmstrftime.js.map
@@ -0,0 +1 @@
+{"version":3,"sources":["../../../src/php/datetime/gmstrftime.js"],"names":["module","exports","gmstrftime","format","timestamp","strftime","require","_date","Date","parse","toUTCString","slice"],"mappings":";;AAAAA,OAAOC,OAAP,GAAiB,SAASC,UAAT,CAAqBC,MAArB,EAA6BC,SAA7B,EAAwC;AACvD;AACA;AACA;AACA;AACA;AACA;;AAEA,MAAIC,WAAWC,QAAQ,sBAAR,CAAf;;AAEA,MAAIC,QAAS,OAAOH,SAAP,KAAqB,WAAtB,GACR,IAAII,IAAJ,EADQ,GAEPJ,qBAAqBI,IAAtB,GACE,IAAIA,IAAJ,CAASJ,SAAT,CADF,GAEE,IAAII,IAAJ,CAASJ,YAAY,IAArB,CAJN;;AAMAA,cAAYI,KAAKC,KAAL,CAAWF,MAAMG,WAAN,GAAoBC,KAApB,CAA0B,CAA1B,EAA6B,CAAC,CAA9B,CAAX,IAA+C,IAA3D;;AAEA,SAAON,SAASF,MAAT,EAAiBC,SAAjB,CAAP;AACD,CAnBD","file":"gmstrftime.js","sourcesContent":["module.exports = function gmstrftime (format, timestamp) {\n // discuss at: http://locutus.io/php/gmstrftime/\n // original by: Brett Zamir (http://brett-zamir.me)\n // input by: Alex\n // bugfixed by: Brett Zamir (http://brett-zamir.me)\n // example 1: gmstrftime(\"%A\", 1062462400)\n // returns 1: 'Tuesday'\n\n var strftime = require('../datetime/strftime')\n\n var _date = (typeof timestamp === 'undefined')\n ? new Date()\n : (timestamp instanceof Date)\n ? new Date(timestamp)\n : new Date(timestamp * 1000)\n\n timestamp = Date.parse(_date.toUTCString().slice(0, -4)) / 1000\n\n return strftime(format, timestamp)\n}\n"]} \ No newline at end of file
diff --git a/node_modules/locutus/php/datetime/idate.js b/node_modules/locutus/php/datetime/idate.js
new file mode 100644
index 0000000..438e2c0
--- /dev/null
+++ b/node_modules/locutus/php/datetime/idate.js
@@ -0,0 +1,71 @@
+'use strict';
+
+module.exports = function idate(format, timestamp) {
+ // discuss at: http://locutus.io/php/idate/
+ // original by: Brett Zamir (http://brett-zamir.me)
+ // original by: date
+ // original by: gettimeofday
+ // input by: Alex
+ // bugfixed by: Brett Zamir (http://brett-zamir.me)
+ // improved by: Theriault (https://github.com/Theriault)
+ // example 1: idate('y', 1255633200)
+ // returns 1: 9
+
+ if (format === undefined) {
+ throw new Error('idate() expects at least 1 parameter, 0 given');
+ }
+ if (!format.length || format.length > 1) {
+ throw new Error('idate format is one char');
+ }
+
+ // @todo: Need to allow date_default_timezone_set() (check for $locutus.default_timezone and use)
+ var _date = typeof timestamp === 'undefined' ? new Date() : timestamp instanceof Date ? new Date(timestamp) : new Date(timestamp * 1000);
+ var a;
+
+ switch (format) {
+ case 'B':
+ return Math.floor((_date.getUTCHours() * 36e2 + _date.getUTCMinutes() * 60 + _date.getUTCSeconds() + 36e2) / 86.4) % 1e3;
+ case 'd':
+ return _date.getDate();
+ case 'h':
+ return _date.getHours() % 12 || 12;
+ case 'H':
+ return _date.getHours();
+ case 'i':
+ return _date.getMinutes();
+ case 'I':
+ // capital 'i'
+ // Logic original by getimeofday().
+ // Compares Jan 1 minus Jan 1 UTC to Jul 1 minus Jul 1 UTC.
+ // If they are not equal, then DST is observed.
+ a = _date.getFullYear();
+ return 0 + (new Date(a, 0) - Date.UTC(a, 0) !== new Date(a, 6) - Date.UTC(a, 6));
+ case 'L':
+ a = _date.getFullYear();
+ return !(a & 3) && (a % 1e2 || !(a % 4e2)) ? 1 : 0;
+ case 'm':
+ return _date.getMonth() + 1;
+ case 's':
+ return _date.getSeconds();
+ case 't':
+ return new Date(_date.getFullYear(), _date.getMonth() + 1, 0).getDate();
+ case 'U':
+ return Math.round(_date.getTime() / 1000);
+ case 'w':
+ return _date.getDay();
+ case 'W':
+ a = new Date(_date.getFullYear(), _date.getMonth(), _date.getDate() - (_date.getDay() || 7) + 3);
+ return 1 + Math.round((a - new Date(a.getFullYear(), 0, 4)) / 864e5 / 7);
+ case 'y':
+ return parseInt((_date.getFullYear() + '').slice(2), 10); // This function returns an integer, unlike _date()
+ case 'Y':
+ return _date.getFullYear();
+ case 'z':
+ return Math.floor((_date - new Date(_date.getFullYear(), 0, 1)) / 864e5);
+ case 'Z':
+ return -_date.getTimezoneOffset() * 60;
+ default:
+ throw new Error('Unrecognized _date format token');
+ }
+};
+//# sourceMappingURL=idate.js.map \ No newline at end of file
diff --git a/node_modules/locutus/php/datetime/idate.js.map b/node_modules/locutus/php/datetime/idate.js.map
new file mode 100644
index 0000000..2ffdefc
--- /dev/null
+++ b/node_modules/locutus/php/datetime/idate.js.map
@@ -0,0 +1 @@
+{"version":3,"sources":["../../../src/php/datetime/idate.js"],"names":["module","exports","idate","format","timestamp","undefined","Error","length","_date","Date","a","Math","floor","getUTCHours","getUTCMinutes","getUTCSeconds","getDate","getHours","getMinutes","getFullYear","UTC","getMonth","getSeconds","round","getTime","getDay","parseInt","slice","getTimezoneOffset"],"mappings":"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","file":"idate.js","sourcesContent":["module.exports = function idate (format, timestamp) {\n // discuss at: http://locutus.io/php/idate/\n // original by: Brett Zamir (http://brett-zamir.me)\n // original by: date\n // original by: gettimeofday\n // input by: Alex\n // bugfixed by: Brett Zamir (http://brett-zamir.me)\n // improved by: Theriault (https://github.com/Theriault)\n // example 1: idate('y', 1255633200)\n // returns 1: 9\n\n if (format === undefined) {\n throw new Error('idate() expects at least 1 parameter, 0 given')\n }\n if (!format.length || format.length > 1) {\n throw new Error('idate format is one char')\n }\n\n // @todo: Need to allow date_default_timezone_set() (check for $locutus.default_timezone and use)\n var _date = (typeof timestamp === 'undefined')\n ? new Date()\n : (timestamp instanceof Date)\n ? new Date(timestamp)\n : new Date(timestamp * 1000)\n var a\n\n switch (format) {\n case 'B':\n return Math.floor((\n (_date.getUTCHours() * 36e2) +\n (_date.getUTCMinutes() * 60) +\n _date.getUTCSeconds() + 36e2\n ) / 86.4) % 1e3\n case 'd':\n return _date.getDate()\n case 'h':\n return _date.getHours() % 12 || 12\n case 'H':\n return _date.getHours()\n case 'i':\n return _date.getMinutes()\n case 'I':\n // capital 'i'\n // Logic original by getimeofday().\n // Compares Jan 1 minus Jan 1 UTC to Jul 1 minus Jul 1 UTC.\n // If they are not equal, then DST is observed.\n a = _date.getFullYear()\n return 0 + (((new Date(a, 0)) - Date.UTC(a, 0)) !== ((new Date(a, 6)) - Date.UTC(a, 6)))\n case 'L':\n a = _date.getFullYear()\n return (!(a & 3) && (a % 1e2 || !(a % 4e2))) ? 1 : 0\n case 'm':\n return _date.getMonth() + 1\n case 's':\n return _date.getSeconds()\n case 't':\n return (new Date(_date.getFullYear(), _date.getMonth() + 1, 0))\n .getDate()\n case 'U':\n return Math.round(_date.getTime() / 1000)\n case 'w':\n return _date.getDay()\n case 'W':\n a = new Date(\n _date.getFullYear(),\n _date.getMonth(),\n _date.getDate() - (_date.getDay() || 7) + 3\n )\n return 1 + Math.round((a - (new Date(a.getFullYear(), 0, 4))) / 864e5 / 7)\n case 'y':\n return parseInt((_date.getFullYear() + '')\n .slice(2), 10) // This function returns an integer, unlike _date()\n case 'Y':\n return _date.getFullYear()\n case 'z':\n return Math.floor((_date - new Date(_date.getFullYear(), 0, 1)) / 864e5)\n case 'Z':\n return -_date.getTimezoneOffset() * 60\n default:\n throw new Error('Unrecognized _date format token')\n }\n}\n"]} \ No newline at end of file
diff --git a/node_modules/locutus/php/datetime/index.js b/node_modules/locutus/php/datetime/index.js
new file mode 100644
index 0000000..e54b112
--- /dev/null
+++ b/node_modules/locutus/php/datetime/index.js
@@ -0,0 +1,18 @@
+'use strict';
+
+module.exports['checkdate'] = require('./checkdate');
+module.exports['date'] = require('./date');
+module.exports['date_parse'] = require('./date_parse');
+module.exports['getdate'] = require('./getdate');
+module.exports['gettimeofday'] = require('./gettimeofday');
+module.exports['gmdate'] = require('./gmdate');
+module.exports['gmmktime'] = require('./gmmktime');
+module.exports['gmstrftime'] = require('./gmstrftime');
+module.exports['idate'] = require('./idate');
+module.exports['microtime'] = require('./microtime');
+module.exports['mktime'] = require('./mktime');
+module.exports['strftime'] = require('./strftime');
+module.exports['strptime'] = require('./strptime');
+module.exports['strtotime'] = require('./strtotime');
+module.exports['time'] = require('./time');
+//# sourceMappingURL=index.js.map \ No newline at end of file
diff --git a/node_modules/locutus/php/datetime/index.js.map b/node_modules/locutus/php/datetime/index.js.map
new file mode 100644
index 0000000..b3f69d5
--- /dev/null
+++ b/node_modules/locutus/php/datetime/index.js.map
@@ -0,0 +1 @@
+{"version":3,"sources":["../../../src/php/datetime/index.js"],"names":["module","exports","require"],"mappings":";;AAAAA,OAAOC,OAAP,CAAe,WAAf,IAA8BC,QAAQ,aAAR,CAA9B;AACAF,OAAOC,OAAP,CAAe,MAAf,IAAyBC,QAAQ,QAAR,CAAzB;AACAF,OAAOC,OAAP,CAAe,YAAf,IAA+BC,QAAQ,cAAR,CAA/B;AACAF,OAAOC,OAAP,CAAe,SAAf,IAA4BC,QAAQ,WAAR,CAA5B;AACAF,OAAOC,OAAP,CAAe,cAAf,IAAiCC,QAAQ,gBAAR,CAAjC;AACAF,OAAOC,OAAP,CAAe,QAAf,IAA2BC,QAAQ,UAAR,CAA3B;AACAF,OAAOC,OAAP,CAAe,UAAf,IAA6BC,QAAQ,YAAR,CAA7B;AACAF,OAAOC,OAAP,CAAe,YAAf,IAA+BC,QAAQ,cAAR,CAA/B;AACAF,OAAOC,OAAP,CAAe,OAAf,IAA0BC,QAAQ,SAAR,CAA1B;AACAF,OAAOC,OAAP,CAAe,WAAf,IAA8BC,QAAQ,aAAR,CAA9B;AACAF,OAAOC,OAAP,CAAe,QAAf,IAA2BC,QAAQ,UAAR,CAA3B;AACAF,OAAOC,OAAP,CAAe,UAAf,IAA6BC,QAAQ,YAAR,CAA7B;AACAF,OAAOC,OAAP,CAAe,UAAf,IAA6BC,QAAQ,YAAR,CAA7B;AACAF,OAAOC,OAAP,CAAe,WAAf,IAA8BC,QAAQ,aAAR,CAA9B;AACAF,OAAOC,OAAP,CAAe,MAAf,IAAyBC,QAAQ,QAAR,CAAzB","file":"index.js","sourcesContent":["module.exports['checkdate'] = require('./checkdate')\nmodule.exports['date'] = require('./date')\nmodule.exports['date_parse'] = require('./date_parse')\nmodule.exports['getdate'] = require('./getdate')\nmodule.exports['gettimeofday'] = require('./gettimeofday')\nmodule.exports['gmdate'] = require('./gmdate')\nmodule.exports['gmmktime'] = require('./gmmktime')\nmodule.exports['gmstrftime'] = require('./gmstrftime')\nmodule.exports['idate'] = require('./idate')\nmodule.exports['microtime'] = require('./microtime')\nmodule.exports['mktime'] = require('./mktime')\nmodule.exports['strftime'] = require('./strftime')\nmodule.exports['strptime'] = require('./strptime')\nmodule.exports['strtotime'] = require('./strtotime')\nmodule.exports['time'] = require('./time')\n"]} \ No newline at end of file
diff --git a/node_modules/locutus/php/datetime/microtime.js b/node_modules/locutus/php/datetime/microtime.js
new file mode 100644
index 0000000..e43c92b
--- /dev/null
+++ b/node_modules/locutus/php/datetime/microtime.js
@@ -0,0 +1,37 @@
+'use strict';
+
+module.exports = function microtime(getAsFloat) {
+ // discuss at: http://locutus.io/php/microtime/
+ // original by: Paulo Freitas
+ // improved by: Dumitru Uzun (http://duzun.me)
+ // example 1: var $timeStamp = microtime(true)
+ // example 1: $timeStamp > 1000000000 && $timeStamp < 2000000000
+ // returns 1: true
+ // example 2: /^0\.[0-9]{1,6} [0-9]{10,10}$/.test(microtime())
+ // returns 2: true
+
+ var s;
+ var now;
+ if (typeof performance !== 'undefined' && performance.now) {
+ now = (performance.now() + performance.timing.navigationStart) / 1e3;
+ if (getAsFloat) {
+ return now;
+ }
+
+ // Math.round(now)
+ s = now | 0;
+
+ return Math.round((now - s) * 1e6) / 1e6 + ' ' + s;
+ } else {
+ now = (Date.now ? Date.now() : new Date().getTime()) / 1e3;
+ if (getAsFloat) {
+ return now;
+ }
+
+ // Math.round(now)
+ s = now | 0;
+
+ return Math.round((now - s) * 1e3) / 1e3 + ' ' + s;
+ }
+};
+//# sourceMappingURL=microtime.js.map \ No newline at end of file
diff --git a/node_modules/locutus/php/datetime/microtime.js.map b/node_modules/locutus/php/datetime/microtime.js.map
new file mode 100644
index 0000000..94ee8ce
--- /dev/null
+++ b/node_modules/locutus/php/datetime/microtime.js.map
@@ -0,0 +1 @@
+{"version":3,"sources":["../../../src/php/datetime/microtime.js"],"names":["module","exports","microtime","getAsFloat","s","now","performance","timing","navigationStart","Math","round","Date","getTime"],"mappings":";;AAAAA,OAAOC,OAAP,GAAiB,SAASC,SAAT,CAAoBC,UAApB,EAAgC;AAC/C;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA,MAAIC,CAAJ;AACA,MAAIC,GAAJ;AACA,MAAI,OAAOC,WAAP,KAAuB,WAAvB,IAAsCA,YAAYD,GAAtD,EAA2D;AACzDA,UAAM,CAACC,YAAYD,GAAZ,KAAoBC,YAAYC,MAAZ,CAAmBC,eAAxC,IAA2D,GAAjE;AACA,QAAIL,UAAJ,EAAgB;AACd,aAAOE,GAAP;AACD;;AAED;AACAD,QAAIC,MAAM,CAAV;;AAEA,WAAQI,KAAKC,KAAL,CAAW,CAACL,MAAMD,CAAP,IAAY,GAAvB,IAA8B,GAA/B,GAAsC,GAAtC,GAA4CA,CAAnD;AACD,GAVD,MAUO;AACLC,UAAM,CAACM,KAAKN,GAAL,GAAWM,KAAKN,GAAL,EAAX,GAAwB,IAAIM,IAAJ,GAAWC,OAAX,EAAzB,IAAiD,GAAvD;AACA,QAAIT,UAAJ,EAAgB;AACd,aAAOE,GAAP;AACD;;AAED;AACAD,QAAIC,MAAM,CAAV;;AAEA,WAAQI,KAAKC,KAAL,CAAW,CAACL,MAAMD,CAAP,IAAY,GAAvB,IAA8B,GAA/B,GAAsC,GAAtC,GAA4CA,CAAnD;AACD;AACF,CAjCD","file":"microtime.js","sourcesContent":["module.exports = function microtime (getAsFloat) {\n // discuss at: http://locutus.io/php/microtime/\n // original by: Paulo Freitas\n // improved by: Dumitru Uzun (http://duzun.me)\n // example 1: var $timeStamp = microtime(true)\n // example 1: $timeStamp > 1000000000 && $timeStamp < 2000000000\n // returns 1: true\n // example 2: /^0\\.[0-9]{1,6} [0-9]{10,10}$/.test(microtime())\n // returns 2: true\n\n var s\n var now\n if (typeof performance !== 'undefined' && performance.now) {\n now = (performance.now() + performance.timing.navigationStart) / 1e3\n if (getAsFloat) {\n return now\n }\n\n // Math.round(now)\n s = now | 0\n\n return (Math.round((now - s) * 1e6) / 1e6) + ' ' + s\n } else {\n now = (Date.now ? Date.now() : new Date().getTime()) / 1e3\n if (getAsFloat) {\n return now\n }\n\n // Math.round(now)\n s = now | 0\n\n return (Math.round((now - s) * 1e3) / 1e3) + ' ' + s\n }\n}\n"]} \ No newline at end of file
diff --git a/node_modules/locutus/php/datetime/mktime.js b/node_modules/locutus/php/datetime/mktime.js
new file mode 100644
index 0000000..bf25357
--- /dev/null
+++ b/node_modules/locutus/php/datetime/mktime.js
@@ -0,0 +1,77 @@
+'use strict';
+
+module.exports = function mktime() {
+ // discuss at: http://locutus.io/php/mktime/
+ // original by: Kevin van Zonneveld (http://kvz.io)
+ // improved by: baris ozdil
+ // improved by: Kevin van Zonneveld (http://kvz.io)
+ // improved by: FGFEmperor
+ // improved by: Brett Zamir (http://brett-zamir.me)
+ // input by: gabriel paderni
+ // input by: Yannoo
+ // input by: jakes
+ // input by: 3D-GRAF
+ // input by: Chris
+ // bugfixed by: Kevin van Zonneveld (http://kvz.io)
+ // bugfixed by: Kevin van Zonneveld (http://kvz.io)
+ // bugfixed by: Marc Palau
+ // bugfixed by: Brett Zamir (http://brett-zamir.me)
+ // revised by: Theriault (https://github.com/Theriault)
+ // note 1: The return values of the following examples are
+ // note 1: received only if your system's timezone is UTC.
+ // example 1: mktime(14, 10, 2, 2, 1, 2008)
+ // returns 1: 1201875002
+ // example 2: mktime(0, 0, 0, 0, 1, 2008)
+ // returns 2: 1196467200
+ // example 3: var $make = mktime()
+ // example 3: var $td = new Date()
+ // example 3: var $real = Math.floor($td.getTime() / 1000)
+ // example 3: var $diff = ($real - $make)
+ // example 3: $diff < 5
+ // returns 3: true
+ // example 4: mktime(0, 0, 0, 13, 1, 1997)
+ // returns 4: 883612800
+ // example 5: mktime(0, 0, 0, 1, 1, 1998)
+ // returns 5: 883612800
+ // example 6: mktime(0, 0, 0, 1, 1, 98)
+ // returns 6: 883612800
+ // example 7: mktime(23, 59, 59, 13, 0, 2010)
+ // returns 7: 1293839999
+ // example 8: mktime(0, 0, -1, 1, 1, 1970)
+ // returns 8: -1
+
+ var d = new Date();
+ var r = arguments;
+ var i = 0;
+ var e = ['Hours', 'Minutes', 'Seconds', 'Month', 'Date', 'FullYear'];
+
+ for (i = 0; i < e.length; i++) {
+ if (typeof r[i] === 'undefined') {
+ r[i] = d['get' + e[i]]();
+ // +1 to fix JS months.
+ r[i] += i === 3;
+ } else {
+ r[i] = parseInt(r[i], 10);
+ if (isNaN(r[i])) {
+ return false;
+ }
+ }
+ }
+
+ // Map years 0-69 to 2000-2069 and years 70-100 to 1970-2000.
+ r[5] += r[5] >= 0 ? r[5] <= 69 ? 2e3 : r[5] <= 100 ? 1900 : 0 : 0;
+
+ // Set year, month (-1 to fix JS months), and date.
+ // !This must come before the call to setHours!
+ d.setFullYear(r[5], r[3] - 1, r[4]);
+
+ // Set hours, minutes, and seconds.
+ d.setHours(r[0], r[1], r[2]);
+
+ var time = d.getTime();
+
+ // Divide milliseconds by 1000 to return seconds and drop decimal.
+ // Add 1 second if negative or it'll be off from PHP by 1 second.
+ return (time / 1e3 >> 0) - (time < 0);
+};
+//# sourceMappingURL=mktime.js.map \ No newline at end of file
diff --git a/node_modules/locutus/php/datetime/mktime.js.map b/node_modules/locutus/php/datetime/mktime.js.map
new file mode 100644
index 0000000..7310be6
--- /dev/null
+++ b/node_modules/locutus/php/datetime/mktime.js.map
@@ -0,0 +1 @@
+{"version":3,"sources":["../../../src/php/datetime/mktime.js"],"names":["module","exports","mktime","d","Date","r","arguments","i","e","length","parseInt","isNaN","setFullYear","setHours","time","getTime"],"mappings":";;AAAAA,OAAOC,OAAP,GAAiB,SAASC,MAAT,GAAmB;AAClC;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA,MAAIC,IAAI,IAAIC,IAAJ,EAAR;AACA,MAAIC,IAAIC,SAAR;AACA,MAAIC,IAAI,CAAR;AACA,MAAIC,IAAI,CAAC,OAAD,EAAU,SAAV,EAAqB,SAArB,EAAgC,OAAhC,EAAyC,MAAzC,EAAiD,UAAjD,CAAR;;AAEA,OAAKD,IAAI,CAAT,EAAYA,IAAIC,EAAEC,MAAlB,EAA0BF,GAA1B,EAA+B;AAC7B,QAAI,OAAOF,EAAEE,CAAF,CAAP,KAAgB,WAApB,EAAiC;AAC/BF,QAAEE,CAAF,IAAOJ,EAAE,QAAQK,EAAED,CAAF,CAAV,GAAP;AACA;AACAF,QAAEE,CAAF,KAASA,MAAM,CAAf;AACD,KAJD,MAIO;AACLF,QAAEE,CAAF,IAAOG,SAASL,EAAEE,CAAF,CAAT,EAAe,EAAf,CAAP;AACA,UAAII,MAAMN,EAAEE,CAAF,CAAN,CAAJ,EAAiB;AACf,eAAO,KAAP;AACD;AACF;AACF;;AAED;AACAF,IAAE,CAAF,KAASA,EAAE,CAAF,KAAQ,CAAR,GAAaA,EAAE,CAAF,KAAQ,EAAR,GAAa,GAAb,GAAoBA,EAAE,CAAF,KAAQ,GAAR,GAAc,IAAd,GAAqB,CAAtD,GAA4D,CAArE;;AAEA;AACA;AACAF,IAAES,WAAF,CAAcP,EAAE,CAAF,CAAd,EAAoBA,EAAE,CAAF,IAAO,CAA3B,EAA8BA,EAAE,CAAF,CAA9B;;AAEA;AACAF,IAAEU,QAAF,CAAWR,EAAE,CAAF,CAAX,EAAiBA,EAAE,CAAF,CAAjB,EAAuBA,EAAE,CAAF,CAAvB;;AAEA,MAAIS,OAAOX,EAAEY,OAAF,EAAX;;AAEA;AACA;AACA,SAAO,CAACD,OAAO,GAAP,IAAc,CAAf,KAAqBA,OAAO,CAA5B,CAAP;AACD,CAzED","file":"mktime.js","sourcesContent":["module.exports = function mktime () {\n // discuss at: http://locutus.io/php/mktime/\n // original by: Kevin van Zonneveld (http://kvz.io)\n // improved by: baris ozdil\n // improved by: Kevin van Zonneveld (http://kvz.io)\n // improved by: FGFEmperor\n // improved by: Brett Zamir (http://brett-zamir.me)\n // input by: gabriel paderni\n // input by: Yannoo\n // input by: jakes\n // input by: 3D-GRAF\n // input by: Chris\n // bugfixed by: Kevin van Zonneveld (http://kvz.io)\n // bugfixed by: Kevin van Zonneveld (http://kvz.io)\n // bugfixed by: Marc Palau\n // bugfixed by: Brett Zamir (http://brett-zamir.me)\n // revised by: Theriault (https://github.com/Theriault)\n // note 1: The return values of the following examples are\n // note 1: received only if your system's timezone is UTC.\n // example 1: mktime(14, 10, 2, 2, 1, 2008)\n // returns 1: 1201875002\n // example 2: mktime(0, 0, 0, 0, 1, 2008)\n // returns 2: 1196467200\n // example 3: var $make = mktime()\n // example 3: var $td = new Date()\n // example 3: var $real = Math.floor($td.getTime() / 1000)\n // example 3: var $diff = ($real - $make)\n // example 3: $diff < 5\n // returns 3: true\n // example 4: mktime(0, 0, 0, 13, 1, 1997)\n // returns 4: 883612800\n // example 5: mktime(0, 0, 0, 1, 1, 1998)\n // returns 5: 883612800\n // example 6: mktime(0, 0, 0, 1, 1, 98)\n // returns 6: 883612800\n // example 7: mktime(23, 59, 59, 13, 0, 2010)\n // returns 7: 1293839999\n // example 8: mktime(0, 0, -1, 1, 1, 1970)\n // returns 8: -1\n\n var d = new Date()\n var r = arguments\n var i = 0\n var e = ['Hours', 'Minutes', 'Seconds', 'Month', 'Date', 'FullYear']\n\n for (i = 0; i < e.length; i++) {\n if (typeof r[i] === 'undefined') {\n r[i] = d['get' + e[i]]()\n // +1 to fix JS months.\n r[i] += (i === 3)\n } else {\n r[i] = parseInt(r[i], 10)\n if (isNaN(r[i])) {\n return false\n }\n }\n }\n\n // Map years 0-69 to 2000-2069 and years 70-100 to 1970-2000.\n r[5] += (r[5] >= 0 ? (r[5] <= 69 ? 2e3 : (r[5] <= 100 ? 1900 : 0)) : 0)\n\n // Set year, month (-1 to fix JS months), and date.\n // !This must come before the call to setHours!\n d.setFullYear(r[5], r[3] - 1, r[4])\n\n // Set hours, minutes, and seconds.\n d.setHours(r[0], r[1], r[2])\n\n var time = d.getTime()\n\n // Divide milliseconds by 1000 to return seconds and drop decimal.\n // Add 1 second if negative or it'll be off from PHP by 1 second.\n return (time / 1e3 >> 0) - (time < 0)\n}\n"]} \ No newline at end of file
diff --git a/node_modules/locutus/php/datetime/strftime.js b/node_modules/locutus/php/datetime/strftime.js
new file mode 100644
index 0000000..2099071
--- /dev/null
+++ b/node_modules/locutus/php/datetime/strftime.js
@@ -0,0 +1,198 @@
+'use strict';
+
+var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; };
+
+module.exports = function strftime(fmt, timestamp) {
+ // discuss at: http://locutus.io/php/strftime/
+ // original by: Blues (http://tech.bluesmoon.info/)
+ // reimplemented by: Brett Zamir (http://brett-zamir.me)
+ // input by: Alex
+ // bugfixed by: Brett Zamir (http://brett-zamir.me)
+ // improved by: Brett Zamir (http://brett-zamir.me)
+ // note 1: Uses global: locutus to store locale info
+ // example 1: strftime("%A", 1062462400); // Return value will depend on date and locale
+ // returns 1: 'Tuesday'
+
+ var setlocale = require('../strings/setlocale');
+
+ var $global = typeof window !== 'undefined' ? window : global;
+ $global.$locutus = $global.$locutus || {};
+ var $locutus = $global.$locutus;
+
+ // ensure setup of localization variables takes place
+ setlocale('LC_ALL', 0);
+
+ var _xPad = function _xPad(x, pad, r) {
+ if (typeof r === 'undefined') {
+ r = 10;
+ }
+ for (; parseInt(x, 10) < r && r > 1; r /= 10) {
+ x = pad.toString() + x;
+ }
+ return x.toString();
+ };
+
+ var locale = $locutus.php.localeCategories.LC_TIME;
+ var lcTime = $locutus.php.locales[locale].LC_TIME;
+
+ var _formats = {
+ a: function a(d) {
+ return lcTime.a[d.getDay()];
+ },
+ A: function A(d) {
+ return lcTime.A[d.getDay()];
+ },
+ b: function b(d) {
+ return lcTime.b[d.getMonth()];
+ },
+ B: function B(d) {
+ return lcTime.B[d.getMonth()];
+ },
+ C: function C(d) {
+ return _xPad(parseInt(d.getFullYear() / 100, 10), 0);
+ },
+ d: ['getDate', '0'],
+ e: ['getDate', ' '],
+ g: function g(d) {
+ return _xPad(parseInt(this.G(d) / 100, 10), 0);
+ },
+ G: function G(d) {
+ var y = d.getFullYear();
+ var V = parseInt(_formats.V(d), 10);
+ var W = parseInt(_formats.W(d), 10);
+
+ if (W > V) {
+ y++;
+ } else if (W === 0 && V >= 52) {
+ y--;
+ }
+
+ return y;
+ },
+ H: ['getHours', '0'],
+ I: function I(d) {
+ var I = d.getHours() % 12;
+ return _xPad(I === 0 ? 12 : I, 0);
+ },
+ j: function j(d) {
+ var ms = d - new Date('' + d.getFullYear() + '/1/1 GMT');
+ // Line differs from Yahoo implementation which would be
+ // equivalent to replacing it here with:
+ ms += d.getTimezoneOffset() * 60000;
+ var doy = parseInt(ms / 60000 / 60 / 24, 10) + 1;
+ return _xPad(doy, 0, 100);
+ },
+ k: ['getHours', '0'],
+ // not in PHP, but implemented here (as in Yahoo)
+ l: function l(d) {
+ var l = d.getHours() % 12;
+ return _xPad(l === 0 ? 12 : l, ' ');
+ },
+ m: function m(d) {
+ return _xPad(d.getMonth() + 1, 0);
+ },
+ M: ['getMinutes', '0'],
+ p: function p(d) {
+ return lcTime.p[d.getHours() >= 12 ? 1 : 0];
+ },
+ P: function P(d) {
+ return lcTime.P[d.getHours() >= 12 ? 1 : 0];
+ },
+ s: function s(d) {
+ // Yahoo uses return parseInt(d.getTime()/1000, 10);
+ return Date.parse(d) / 1000;
+ },
+ S: ['getSeconds', '0'],
+ u: function u(d) {
+ var dow = d.getDay();
+ return dow === 0 ? 7 : dow;
+ },
+ U: function U(d) {
+ var doy = parseInt(_formats.j(d), 10);
+ var rdow = 6 - d.getDay();
+ var woy = parseInt((doy + rdow) / 7, 10);
+ return _xPad(woy, 0);
+ },
+ V: function V(d) {
+ var woy = parseInt(_formats.W(d), 10);
+ var dow11 = new Date('' + d.getFullYear() + '/1/1').getDay();
+ // First week is 01 and not 00 as in the case of %U and %W,
+ // so we add 1 to the final result except if day 1 of the year
+ // is a Monday (then %W returns 01).
+ // We also need to subtract 1 if the day 1 of the year is
+ // Friday-Sunday, so the resulting equation becomes:
+ var idow = woy + (dow11 > 4 || dow11 <= 1 ? 0 : 1);
+ if (idow === 53 && new Date('' + d.getFullYear() + '/12/31').getDay() < 4) {
+ idow = 1;
+ } else if (idow === 0) {
+ idow = _formats.V(new Date('' + (d.getFullYear() - 1) + '/12/31'));
+ }
+ return _xPad(idow, 0);
+ },
+ w: 'getDay',
+ W: function W(d) {
+ var doy = parseInt(_formats.j(d), 10);
+ var rdow = 7 - _formats.u(d);
+ var woy = parseInt((doy + rdow) / 7, 10);
+ return _xPad(woy, 0, 10);
+ },
+ y: function y(d) {
+ return _xPad(d.getFullYear() % 100, 0);
+ },
+ Y: 'getFullYear',
+ z: function z(d) {
+ var o = d.getTimezoneOffset();
+ var H = _xPad(parseInt(Math.abs(o / 60), 10), 0);
+ var M = _xPad(o % 60, 0);
+ return (o > 0 ? '-' : '+') + H + M;
+ },
+ Z: function Z(d) {
+ return d.toString().replace(/^.*\(([^)]+)\)$/, '$1');
+ },
+ '%': function _(d) {
+ return '%';
+ }
+ };
+
+ var _date = typeof timestamp === 'undefined' ? new Date() : timestamp instanceof Date ? new Date(timestamp) : new Date(timestamp * 1000);
+
+ var _aggregates = {
+ c: 'locale',
+ D: '%m/%d/%y',
+ F: '%y-%m-%d',
+ h: '%b',
+ n: '\n',
+ r: 'locale',
+ R: '%H:%M',
+ t: '\t',
+ T: '%H:%M:%S',
+ x: 'locale',
+ X: 'locale'
+ };
+
+ // First replace aggregates (run in a loop because an agg may be made up of other aggs)
+ while (fmt.match(/%[cDFhnrRtTxX]/)) {
+ fmt = fmt.replace(/%([cDFhnrRtTxX])/g, function (m0, m1) {
+ var f = _aggregates[m1];
+ return f === 'locale' ? lcTime[m1] : f;
+ });
+ }
+
+ // Now replace formats - we need a closure so that the date object gets passed through
+ var str = fmt.replace(/%([aAbBCdegGHIjklmMpPsSuUVwWyYzZ%])/g, function (m0, m1) {
+ var f = _formats[m1];
+ if (typeof f === 'string') {
+ return _date[f]();
+ } else if (typeof f === 'function') {
+ return f(_date);
+ } else if ((typeof f === 'undefined' ? 'undefined' : _typeof(f)) === 'object' && typeof f[0] === 'string') {
+ return _xPad(_date[f[0]](), f[1]);
+ } else {
+ // Shouldn't reach here
+ return m1;
+ }
+ });
+
+ return str;
+};
+//# sourceMappingURL=strftime.js.map \ No newline at end of file
diff --git a/node_modules/locutus/php/datetime/strftime.js.map b/node_modules/locutus/php/datetime/strftime.js.map
new file mode 100644
index 0000000..b0f8d0f
--- /dev/null
+++ b/node_modules/locutus/php/datetime/strftime.js.map
@@ -0,0 +1 @@
+{"version":3,"sources":["../../../src/php/datetime/strftime.js"],"names":["module","exports","strftime","fmt","timestamp","setlocale","require","$global","window","global","$locutus","_xPad","x","pad","r","parseInt","toString","locale","php","localeCategories","LC_TIME","lcTime","locales","_formats","a","d","getDay","A","b","getMonth","B","C","getFullYear","e","g","G","y","V","W","H","I","getHours","j","ms","Date","getTimezoneOffset","doy","k","l","m","M","p","P","s","parse","S","u","dow","U","rdow","woy","dow11","idow","w","Y","z","o","Math","abs","Z","replace","_date","_aggregates","c","D","F","h","n","R","t","T","X","match","m0","m1","f","str"],"mappings":"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","file":"strftime.js","sourcesContent":["module.exports = function strftime (fmt, timestamp) {\n // discuss at: http://locutus.io/php/strftime/\n // original by: Blues (http://tech.bluesmoon.info/)\n // reimplemented by: Brett Zamir (http://brett-zamir.me)\n // input by: Alex\n // bugfixed by: Brett Zamir (http://brett-zamir.me)\n // improved by: Brett Zamir (http://brett-zamir.me)\n // note 1: Uses global: locutus to store locale info\n // example 1: strftime(\"%A\", 1062462400); // Return value will depend on date and locale\n // returns 1: 'Tuesday'\n\n var setlocale = require('../strings/setlocale')\n\n var $global = (typeof window !== 'undefined' ? window : global)\n $global.$locutus = $global.$locutus || {}\n var $locutus = $global.$locutus\n\n // ensure setup of localization variables takes place\n setlocale('LC_ALL', 0)\n\n var _xPad = function (x, pad, r) {\n if (typeof r === 'undefined') {\n r = 10\n }\n for (; parseInt(x, 10) < r && r > 1; r /= 10) {\n x = pad.toString() + x\n }\n return x.toString()\n }\n\n var locale = $locutus.php.localeCategories.LC_TIME\n var lcTime = $locutus.php.locales[locale].LC_TIME\n\n var _formats = {\n a: function (d) {\n return lcTime.a[d.getDay()]\n },\n A: function (d) {\n return lcTime.A[d.getDay()]\n },\n b: function (d) {\n return lcTime.b[d.getMonth()]\n },\n B: function (d) {\n return lcTime.B[d.getMonth()]\n },\n C: function (d) {\n return _xPad(parseInt(d.getFullYear() / 100, 10), 0)\n },\n d: ['getDate', '0'],\n e: ['getDate', ' '],\n g: function (d) {\n return _xPad(parseInt(this.G(d) / 100, 10), 0)\n },\n G: function (d) {\n var y = d.getFullYear()\n var V = parseInt(_formats.V(d), 10)\n var W = parseInt(_formats.W(d), 10)\n\n if (W > V) {\n y++\n } else if (W === 0 && V >= 52) {\n y--\n }\n\n return y\n },\n H: ['getHours', '0'],\n I: function (d) {\n var I = d.getHours() % 12\n return _xPad(I === 0 ? 12 : I, 0)\n },\n j: function (d) {\n var ms = d - new Date('' + d.getFullYear() + '/1/1 GMT')\n // Line differs from Yahoo implementation which would be\n // equivalent to replacing it here with:\n ms += d.getTimezoneOffset() * 60000\n var doy = parseInt(ms / 60000 / 60 / 24, 10) + 1\n return _xPad(doy, 0, 100)\n },\n k: ['getHours', '0'],\n // not in PHP, but implemented here (as in Yahoo)\n l: function (d) {\n var l = d.getHours() % 12\n return _xPad(l === 0 ? 12 : l, ' ')\n },\n m: function (d) {\n return _xPad(d.getMonth() + 1, 0)\n },\n M: ['getMinutes', '0'],\n p: function (d) {\n return lcTime.p[d.getHours() >= 12 ? 1 : 0]\n },\n P: function (d) {\n return lcTime.P[d.getHours() >= 12 ? 1 : 0]\n },\n s: function (d) {\n // Yahoo uses return parseInt(d.getTime()/1000, 10);\n return Date.parse(d) / 1000\n },\n S: ['getSeconds', '0'],\n u: function (d) {\n var dow = d.getDay()\n return ((dow === 0) ? 7 : dow)\n },\n U: function (d) {\n var doy = parseInt(_formats.j(d), 10)\n var rdow = 6 - d.getDay()\n var woy = parseInt((doy + rdow) / 7, 10)\n return _xPad(woy, 0)\n },\n V: function (d) {\n var woy = parseInt(_formats.W(d), 10)\n var dow11 = (new Date('' + d.getFullYear() + '/1/1')).getDay()\n // First week is 01 and not 00 as in the case of %U and %W,\n // so we add 1 to the final result except if day 1 of the year\n // is a Monday (then %W returns 01).\n // We also need to subtract 1 if the day 1 of the year is\n // Friday-Sunday, so the resulting equation becomes:\n var idow = woy + (dow11 > 4 || dow11 <= 1 ? 0 : 1)\n if (idow === 53 && (new Date('' + d.getFullYear() + '/12/31')).getDay() < 4) {\n idow = 1\n } else if (idow === 0) {\n idow = _formats.V(new Date('' + (d.getFullYear() - 1) + '/12/31'))\n }\n return _xPad(idow, 0)\n },\n w: 'getDay',\n W: function (d) {\n var doy = parseInt(_formats.j(d), 10)\n var rdow = 7 - _formats.u(d)\n var woy = parseInt((doy + rdow) / 7, 10)\n return _xPad(woy, 0, 10)\n },\n y: function (d) {\n return _xPad(d.getFullYear() % 100, 0)\n },\n Y: 'getFullYear',\n z: function (d) {\n var o = d.getTimezoneOffset()\n var H = _xPad(parseInt(Math.abs(o / 60), 10), 0)\n var M = _xPad(o % 60, 0)\n return (o > 0 ? '-' : '+') + H + M\n },\n Z: function (d) {\n return d.toString().replace(/^.*\\(([^)]+)\\)$/, '$1')\n },\n '%': function (d) {\n return '%'\n }\n }\n\n var _date = (typeof timestamp === 'undefined')\n ? new Date()\n : (timestamp instanceof Date)\n ? new Date(timestamp)\n : new Date(timestamp * 1000)\n\n var _aggregates = {\n c: 'locale',\n D: '%m/%d/%y',\n F: '%y-%m-%d',\n h: '%b',\n n: '\\n',\n r: 'locale',\n R: '%H:%M',\n t: '\\t',\n T: '%H:%M:%S',\n x: 'locale',\n X: 'locale'\n }\n\n // First replace aggregates (run in a loop because an agg may be made up of other aggs)\n while (fmt.match(/%[cDFhnrRtTxX]/)) {\n fmt = fmt.replace(/%([cDFhnrRtTxX])/g, function (m0, m1) {\n var f = _aggregates[m1]\n return (f === 'locale' ? lcTime[m1] : f)\n })\n }\n\n // Now replace formats - we need a closure so that the date object gets passed through\n var str = fmt.replace(/%([aAbBCdegGHIjklmMpPsSuUVwWyYzZ%])/g, function (m0, m1) {\n var f = _formats[m1]\n if (typeof f === 'string') {\n return _date[f]()\n } else if (typeof f === 'function') {\n return f(_date)\n } else if (typeof f === 'object' && typeof f[0] === 'string') {\n return _xPad(_date[f[0]](), f[1])\n } else {\n // Shouldn't reach here\n return m1\n }\n })\n\n return str\n}\n"]} \ No newline at end of file
diff --git a/node_modules/locutus/php/datetime/strptime.js b/node_modules/locutus/php/datetime/strptime.js
new file mode 100644
index 0000000..c8f4979
--- /dev/null
+++ b/node_modules/locutus/php/datetime/strptime.js
@@ -0,0 +1,361 @@
+'use strict';
+
+module.exports = function strptime(dateStr, format) {
+ // discuss at: http://locutus.io/php/strptime/
+ // original by: Brett Zamir (http://brett-zamir.me)
+ // original by: strftime
+ // example 1: strptime('20091112222135', '%Y%m%d%H%M%S') // Return value will depend on date and locale
+ // returns 1: {tm_sec: 35, tm_min: 21, tm_hour: 22, tm_mday: 12, tm_mon: 10, tm_year: 109, tm_wday: 4, tm_yday: 315, unparsed: ''}
+ // example 2: strptime('2009extra', '%Y')
+ // returns 2: {tm_sec:0, tm_min:0, tm_hour:0, tm_mday:0, tm_mon:0, tm_year:109, tm_wday:3, tm_yday: -1, unparsed: 'extra'}
+
+ var setlocale = require('../strings/setlocale');
+ var arrayMap = require('../array/array_map');
+
+ var retObj = {
+ tm_sec: 0,
+ tm_min: 0,
+ tm_hour: 0,
+ tm_mday: 0,
+ tm_mon: 0,
+ tm_year: 0,
+ tm_wday: 0,
+ tm_yday: 0,
+ unparsed: ''
+ };
+ var i = 0;
+ var j = 0;
+ var amPmOffset = 0;
+ var prevHour = false;
+ var _reset = function _reset(dateObj, realMday) {
+ // realMday is to allow for a value of 0 in return results (but without
+ // messing up the Date() object)
+ var jan1;
+ var o = retObj;
+ var d = dateObj;
+ o.tm_sec = d.getUTCSeconds();
+ o.tm_min = d.getUTCMinutes();
+ o.tm_hour = d.getUTCHours();
+ o.tm_mday = realMday === 0 ? realMday : d.getUTCDate();
+ o.tm_mon = d.getUTCMonth();
+ o.tm_year = d.getUTCFullYear() - 1900;
+ o.tm_wday = realMday === 0 ? d.getUTCDay() > 0 ? d.getUTCDay() - 1 : 6 : d.getUTCDay();
+ jan1 = new Date(Date.UTC(d.getUTCFullYear(), 0, 1));
+ o.tm_yday = Math.ceil((d - jan1) / (1000 * 60 * 60 * 24));
+ };
+ var _date = function _date() {
+ var o = retObj;
+ // We set date to at least 1 to ensure year or month doesn't go backwards
+ return _reset(new Date(Date.UTC(o.tm_year + 1900, o.tm_mon, o.tm_mday || 1, o.tm_hour, o.tm_min, o.tm_sec)), o.tm_mday);
+ };
+
+ var _NWS = /\S/;
+ var _WS = /\s/;
+
+ var _aggregates = {
+ c: 'locale',
+ D: '%m/%d/%y',
+ F: '%y-%m-%d',
+ r: 'locale',
+ R: '%H:%M',
+ T: '%H:%M:%S',
+ x: 'locale',
+ X: 'locale'
+ };
+
+ /* Fix: Locale alternatives are supported though not documented in PHP; see http://linux.die.net/man/3/strptime
+ Ec
+ EC
+ Ex
+ EX
+ Ey
+ EY
+ Od or Oe
+ OH
+ OI
+ Om
+ OM
+ OS
+ OU
+ Ow
+ OW
+ Oy
+ */
+ var _pregQuote = function _pregQuote(str) {
+ return (str + '').replace(/([\\.+*?[^\]$(){}=!<>|:])/g, '\\$1');
+ };
+
+ // ensure setup of localization variables takes place
+ setlocale('LC_ALL', 0);
+
+ var $global = typeof window !== 'undefined' ? window : global;
+ $global.$locutus = $global.$locutus || {};
+ var $locutus = $global.$locutus;
+ var locale = $locutus.php.localeCategories.LC_TIME;
+ var lcTime = $locutus.php.locales[locale].LC_TIME;
+
+ // First replace aggregates (run in a loop because an agg may be made up of other aggs)
+ while (format.match(/%[cDFhnrRtTxX]/)) {
+ format = format.replace(/%([cDFhnrRtTxX])/g, function (m0, m1) {
+ var f = _aggregates[m1];
+ return f === 'locale' ? lcTime[m1] : f;
+ });
+ }
+
+ var _addNext = function _addNext(j, regex, cb) {
+ if (typeof regex === 'string') {
+ regex = new RegExp('^' + regex, 'i');
+ }
+ var check = dateStr.slice(j);
+ var match = regex.exec(check);
+ // Even if the callback returns null after assigning to the
+ // return object, the object won't be saved anyways
+ var testNull = match ? cb.apply(null, match) : null;
+ if (testNull === null) {
+ throw new Error('No match in string');
+ }
+ return j + match[0].length;
+ };
+
+ var _addLocalized = function _addLocalized(j, formatChar, category) {
+ // Could make each parenthesized instead and pass index to callback:
+ return _addNext(j, arrayMap(_pregQuote, lcTime[formatChar]).join('|'), function (m) {
+ var match = lcTime[formatChar].search(new RegExp('^' + _pregQuote(m) + '$', 'i'));
+ if (match) {
+ retObj[category] = match[0];
+ }
+ });
+ };
+
+ // BEGIN PROCESSING CHARACTERS
+ for (i = 0, j = 0; i < format.length; i++) {
+ if (format.charAt(i) === '%') {
+ var literalPos = ['%', 'n', 't'].indexOf(format.charAt(i + 1));
+ if (literalPos !== -1) {
+ if (['%', '\n', '\t'].indexOf(dateStr.charAt(j)) === literalPos) {
+ // a matched literal
+ ++i;
+ // skip beyond
+ ++j;
+ continue;
+ }
+ // Format indicated a percent literal, but not actually present
+ return false;
+ }
+ var formatChar = format.charAt(i + 1);
+ try {
+ switch (formatChar) {
+ case 'a':
+ case 'A':
+ // Sunday-Saturday
+ // Changes nothing else
+ j = _addLocalized(j, formatChar, 'tm_wday');
+ break;
+ case 'h':
+ case 'b':
+ // Jan-Dec
+ j = _addLocalized(j, 'b', 'tm_mon');
+ // Also changes wday, yday
+ _date();
+ break;
+ case 'B':
+ // January-December
+ j = _addLocalized(j, formatChar, 'tm_mon');
+ // Also changes wday, yday
+ _date();
+ break;
+ case 'C':
+ // 0+; century (19 for 20th)
+ // PHP docs say two-digit, but accepts one-digit (two-digit max):
+ j = _addNext(j, /^\d?\d/, function (d) {
+ var year = (parseInt(d, 10) - 19) * 100;
+ retObj.tm_year = year;
+ _date();
+ if (!retObj.tm_yday) {
+ retObj.tm_yday = -1;
+ }
+ // Also changes wday; and sets yday to -1 (always?)
+ });
+ break;
+ case 'd':
+ case 'e':
+ // 1-31 day
+ j = _addNext(j, formatChar === 'd' ? /^(0[1-9]|[1-2]\d|3[0-1])/ : /^([1-2]\d|3[0-1]|[1-9])/, function (d) {
+ var dayMonth = parseInt(d, 10);
+ retObj.tm_mday = dayMonth;
+ // Also changes w_day, y_day
+ _date();
+ });
+ break;
+ case 'g':
+ // No apparent effect; 2-digit year (see 'V')
+ break;
+ case 'G':
+ // No apparent effect; 4-digit year (see 'V')'
+ break;
+ case 'H':
+ // 00-23 hours
+ j = _addNext(j, /^([0-1]\d|2[0-3])/, function (d) {
+ var hour = parseInt(d, 10);
+ retObj.tm_hour = hour;
+ // Changes nothing else
+ });
+ break;
+ case 'l':
+ case 'I':
+ // 01-12 hours
+ j = _addNext(j, formatChar === 'l' ? /^([1-9]|1[0-2])/ : /^(0[1-9]|1[0-2])/, function (d) {
+ var hour = parseInt(d, 10) - 1 + amPmOffset;
+ retObj.tm_hour = hour;
+ // Used for coordinating with am-pm
+ prevHour = true;
+ // Changes nothing else, but affected by prior 'p/P'
+ });
+ break;
+ case 'j':
+ // 001-366 day of year
+ j = _addNext(j, /^(00[1-9]|0[1-9]\d|[1-2]\d\d|3[0-6][0-6])/, function (d) {
+ var dayYear = parseInt(d, 10) - 1;
+ retObj.tm_yday = dayYear;
+ // Changes nothing else
+ // (oddly, since if original by a given year, could calculate other fields)
+ });
+ break;
+ case 'm':
+ // 01-12 month
+ j = _addNext(j, /^(0[1-9]|1[0-2])/, function (d) {
+ var month = parseInt(d, 10) - 1;
+ retObj.tm_mon = month;
+ // Also sets wday and yday
+ _date();
+ });
+ break;
+ case 'M':
+ // 00-59 minutes
+ j = _addNext(j, /^[0-5]\d/, function (d) {
+ var minute = parseInt(d, 10);
+ retObj.tm_min = minute;
+ // Changes nothing else
+ });
+ break;
+ case 'P':
+ // Seems not to work; AM-PM
+ // Could make fall-through instead since supposed to be a synonym despite PHP docs
+ return false;
+ case 'p':
+ // am-pm
+ j = _addNext(j, /^(am|pm)/i, function (d) {
+ // No effect on 'H' since already 24 hours but
+ // works before or after setting of l/I hour
+ amPmOffset = /a/.test(d) ? 0 : 12;
+ if (prevHour) {
+ retObj.tm_hour += amPmOffset;
+ }
+ });
+ break;
+ case 's':
+ // Unix timestamp (in seconds)
+ j = _addNext(j, /^\d+/, function (d) {
+ var timestamp = parseInt(d, 10);
+ var date = new Date(Date.UTC(timestamp * 1000));
+ _reset(date);
+ // Affects all fields, but can't be negative (and initial + not allowed)
+ });
+ break;
+ case 'S':
+ // 00-59 seconds
+ j = _addNext(j, /^[0-5]\d/, // strptime also accepts 60-61 for some reason
+
+ function (d) {
+ var second = parseInt(d, 10);
+ retObj.tm_sec = second;
+ // Changes nothing else
+ });
+ break;
+ case 'u':
+ case 'w':
+ // 0 (Sunday)-6(Saturday)
+ j = _addNext(j, /^\d/, function (d) {
+ retObj.tm_wday = d - (formatChar === 'u');
+ // Changes nothing else apparently
+ });
+ break;
+ case 'U':
+ case 'V':
+ case 'W':
+ // Apparently ignored (week of year, from 1st Monday)
+ break;
+ case 'y':
+ // 69 (or higher) for 1969+, 68 (or lower) for 2068-
+ // PHP docs say two-digit, but accepts one-digit (two-digit max):
+ j = _addNext(j, /^\d?\d/, function (d) {
+ d = parseInt(d, 10);
+ var year = d >= 69 ? d : d + 100;
+ retObj.tm_year = year;
+ _date();
+ if (!retObj.tm_yday) {
+ retObj.tm_yday = -1;
+ }
+ // Also changes wday; and sets yday to -1 (always?)
+ });
+ break;
+ case 'Y':
+ // 2010 (4-digit year)
+ // PHP docs say four-digit, but accepts one-digit (four-digit max):
+ j = _addNext(j, /^\d{1,4}/, function (d) {
+ var year = parseInt(d, 10) - 1900;
+ retObj.tm_year = year;
+ _date();
+ if (!retObj.tm_yday) {
+ retObj.tm_yday = -1;
+ }
+ // Also changes wday; and sets yday to -1 (always?)
+ });
+ break;
+ case 'z':
+ // Timezone; on my system, strftime gives -0800,
+ // but strptime seems not to alter hour setting
+ break;
+ case 'Z':
+ // Timezone; on my system, strftime gives PST, but strptime treats text as unparsed
+ break;
+ default:
+ throw new Error('Unrecognized formatting character in strptime()');
+ }
+ } catch (e) {
+ if (e === 'No match in string') {
+ // Allow us to exit
+ // There was supposed to be a matching format but there wasn't
+ return false;
+ }
+ // Calculate skipping beyond initial percent too
+ }
+ ++i;
+ } else if (format.charAt(i) !== dateStr.charAt(j)) {
+ // If extra whitespace at beginning or end of either, or between formats, no problem
+ // (just a problem when between % and format specifier)
+
+ // If the string has white-space, it is ok to ignore
+ if (dateStr.charAt(j).search(_WS) !== -1) {
+ j++;
+ // Let the next iteration try again with the same format character
+ i--;
+ } else if (format.charAt(i).search(_NWS) !== -1) {
+ // Any extra formatting characters besides white-space causes
+ // problems (do check after WS though, as may just be WS in string before next character)
+ return false;
+ }
+ // Extra WS in format
+ // Adjust strings when encounter non-matching whitespace, so they align in future checks above
+ // Will check on next iteration (against same (non-WS) string character)
+ } else {
+ j++;
+ }
+ }
+
+ // POST-PROCESSING
+ // Will also get extra whitespace; empty string if none
+ retObj.unparsed = dateStr.slice(j);
+ return retObj;
+};
+//# sourceMappingURL=strptime.js.map \ No newline at end of file
diff --git a/node_modules/locutus/php/datetime/strptime.js.map b/node_modules/locutus/php/datetime/strptime.js.map
new file mode 100644
index 0000000..843cd89
--- /dev/null
+++ b/node_modules/locutus/php/datetime/strptime.js.map
@@ -0,0 +1 @@
+{"version":3,"sources":["../../../src/php/datetime/strptime.js"],"names":["module","exports","strptime","dateStr","format","setlocale","require","arrayMap","retObj","tm_sec","tm_min","tm_hour","tm_mday","tm_mon","tm_year","tm_wday","tm_yday","unparsed","i","j","amPmOffset","prevHour","_reset","dateObj","realMday","jan1","o","d","getUTCSeconds","getUTCMinutes","getUTCHours","getUTCDate","getUTCMonth","getUTCFullYear","getUTCDay","Date","UTC","Math","ceil","_date","_NWS","_WS","_aggregates","c","D","F","r","R","T","x","X","_pregQuote","str","replace","$global","window","global","$locutus","locale","php","localeCategories","LC_TIME","lcTime","locales","match","m0","m1","f","_addNext","regex","cb","RegExp","check","slice","exec","testNull","apply","Error","length","_addLocalized","formatChar","category","join","m","search","charAt","literalPos","indexOf","year","parseInt","dayMonth","hour","dayYear","month","minute","test","timestamp","date","second","e"],"mappings":"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","file":"strptime.js","sourcesContent":["module.exports = function strptime (dateStr, format) {\n // discuss at: http://locutus.io/php/strptime/\n // original by: Brett Zamir (http://brett-zamir.me)\n // original by: strftime\n // example 1: strptime('20091112222135', '%Y%m%d%H%M%S') // Return value will depend on date and locale\n // returns 1: {tm_sec: 35, tm_min: 21, tm_hour: 22, tm_mday: 12, tm_mon: 10, tm_year: 109, tm_wday: 4, tm_yday: 315, unparsed: ''}\n // example 2: strptime('2009extra', '%Y')\n // returns 2: {tm_sec:0, tm_min:0, tm_hour:0, tm_mday:0, tm_mon:0, tm_year:109, tm_wday:3, tm_yday: -1, unparsed: 'extra'}\n\n var setlocale = require('../strings/setlocale')\n var arrayMap = require('../array/array_map')\n\n var retObj = {\n tm_sec: 0,\n tm_min: 0,\n tm_hour: 0,\n tm_mday: 0,\n tm_mon: 0,\n tm_year: 0,\n tm_wday: 0,\n tm_yday: 0,\n unparsed: ''\n }\n var i = 0\n var j = 0\n var amPmOffset = 0\n var prevHour = false\n var _reset = function (dateObj, realMday) {\n // realMday is to allow for a value of 0 in return results (but without\n // messing up the Date() object)\n var jan1\n var o = retObj\n var d = dateObj\n o.tm_sec = d.getUTCSeconds()\n o.tm_min = d.getUTCMinutes()\n o.tm_hour = d.getUTCHours()\n o.tm_mday = realMday === 0 ? realMday : d.getUTCDate()\n o.tm_mon = d.getUTCMonth()\n o.tm_year = d.getUTCFullYear() - 1900\n o.tm_wday = realMday === 0 ? (d.getUTCDay() > 0 ? d.getUTCDay() - 1 : 6) : d.getUTCDay()\n jan1 = new Date(Date.UTC(d.getUTCFullYear(), 0, 1))\n o.tm_yday = Math.ceil((d - jan1) / (1000 * 60 * 60 * 24))\n }\n var _date = function () {\n var o = retObj\n // We set date to at least 1 to ensure year or month doesn't go backwards\n return _reset(new Date(Date.UTC(\n o.tm_year + 1900,\n o.tm_mon,\n o.tm_mday || 1,\n o.tm_hour,\n o.tm_min,\n o.tm_sec\n )),\n o.tm_mday)\n }\n\n var _NWS = /\\S/\n var _WS = /\\s/\n\n var _aggregates = {\n c: 'locale',\n D: '%m/%d/%y',\n F: '%y-%m-%d',\n r: 'locale',\n R: '%H:%M',\n T: '%H:%M:%S',\n x: 'locale',\n X: 'locale'\n }\n\n /* Fix: Locale alternatives are supported though not documented in PHP; see http://linux.die.net/man/3/strptime\n Ec\n EC\n Ex\n EX\n Ey\n EY\n Od or Oe\n OH\n OI\n Om\n OM\n OS\n OU\n Ow\n OW\n Oy\n */\n var _pregQuote = function (str) {\n return (str + '').replace(/([\\\\.+*?[^\\]$(){}=!<>|:])/g, '\\\\$1')\n }\n\n // ensure setup of localization variables takes place\n setlocale('LC_ALL', 0)\n\n var $global = (typeof window !== 'undefined' ? window : global)\n $global.$locutus = $global.$locutus || {}\n var $locutus = $global.$locutus\n var locale = $locutus.php.localeCategories.LC_TIME\n var lcTime = $locutus.php.locales[locale].LC_TIME\n\n // First replace aggregates (run in a loop because an agg may be made up of other aggs)\n while (format.match(/%[cDFhnrRtTxX]/)) {\n format = format.replace(/%([cDFhnrRtTxX])/g, function (m0, m1) {\n var f = _aggregates[m1]\n return (f === 'locale' ? lcTime[m1] : f)\n })\n }\n\n var _addNext = function (j, regex, cb) {\n if (typeof regex === 'string') {\n regex = new RegExp('^' + regex, 'i')\n }\n var check = dateStr.slice(j)\n var match = regex.exec(check)\n // Even if the callback returns null after assigning to the\n // return object, the object won't be saved anyways\n var testNull = match ? cb.apply(null, match) : null\n if (testNull === null) {\n throw new Error('No match in string')\n }\n return j + match[0].length\n }\n\n var _addLocalized = function (j, formatChar, category) {\n // Could make each parenthesized instead and pass index to callback:\n return _addNext(j, arrayMap(_pregQuote, lcTime[formatChar]).join('|'),\n function (m) {\n var match = lcTime[formatChar].search(new RegExp('^' + _pregQuote(m) + '$', 'i'))\n if (match) {\n retObj[category] = match[0]\n }\n })\n }\n\n // BEGIN PROCESSING CHARACTERS\n for (i = 0, j = 0; i < format.length; i++) {\n if (format.charAt(i) === '%') {\n var literalPos = ['%', 'n', 't'].indexOf(format.charAt(i + 1))\n if (literalPos !== -1) {\n if (['%', '\\n', '\\t'].indexOf(dateStr.charAt(j)) === literalPos) {\n // a matched literal\n ++i\n // skip beyond\n ++j\n continue\n }\n // Format indicated a percent literal, but not actually present\n return false\n }\n var formatChar = format.charAt(i + 1)\n try {\n switch (formatChar) {\n case 'a':\n case 'A':\n // Sunday-Saturday\n // Changes nothing else\n j = _addLocalized(j, formatChar, 'tm_wday')\n break\n case 'h':\n case 'b':\n // Jan-Dec\n j = _addLocalized(j, 'b', 'tm_mon')\n // Also changes wday, yday\n _date()\n break\n case 'B':\n // January-December\n j = _addLocalized(j, formatChar, 'tm_mon')\n // Also changes wday, yday\n _date()\n break\n case 'C':\n // 0+; century (19 for 20th)\n // PHP docs say two-digit, but accepts one-digit (two-digit max):\n j = _addNext(j, /^\\d?\\d/,\n\n function (d) {\n var year = (parseInt(d, 10) - 19) * 100\n retObj.tm_year = year\n _date()\n if (!retObj.tm_yday) {\n retObj.tm_yday = -1\n }\n // Also changes wday; and sets yday to -1 (always?)\n })\n break\n case 'd':\n case 'e':\n // 1-31 day\n j = _addNext(j, formatChar === 'd'\n ? /^(0[1-9]|[1-2]\\d|3[0-1])/\n : /^([1-2]\\d|3[0-1]|[1-9])/,\n function (d) {\n var dayMonth = parseInt(d, 10)\n retObj.tm_mday = dayMonth\n // Also changes w_day, y_day\n _date()\n })\n break\n case 'g':\n // No apparent effect; 2-digit year (see 'V')\n break\n case 'G':\n // No apparent effect; 4-digit year (see 'V')'\n break\n case 'H':\n // 00-23 hours\n j = _addNext(j, /^([0-1]\\d|2[0-3])/, function (d) {\n var hour = parseInt(d, 10)\n retObj.tm_hour = hour\n // Changes nothing else\n })\n break\n case 'l':\n case 'I':\n // 01-12 hours\n j = _addNext(j, formatChar === 'l'\n ? /^([1-9]|1[0-2])/\n : /^(0[1-9]|1[0-2])/,\n function (d) {\n var hour = parseInt(d, 10) - 1 + amPmOffset\n retObj.tm_hour = hour\n // Used for coordinating with am-pm\n prevHour = true\n // Changes nothing else, but affected by prior 'p/P'\n })\n break\n case 'j':\n // 001-366 day of year\n j = _addNext(j, /^(00[1-9]|0[1-9]\\d|[1-2]\\d\\d|3[0-6][0-6])/, function (d) {\n var dayYear = parseInt(d, 10) - 1\n retObj.tm_yday = dayYear\n // Changes nothing else\n // (oddly, since if original by a given year, could calculate other fields)\n })\n break\n case 'm':\n // 01-12 month\n j = _addNext(j, /^(0[1-9]|1[0-2])/, function (d) {\n var month = parseInt(d, 10) - 1\n retObj.tm_mon = month\n // Also sets wday and yday\n _date()\n })\n break\n case 'M':\n // 00-59 minutes\n j = _addNext(j, /^[0-5]\\d/, function (d) {\n var minute = parseInt(d, 10)\n retObj.tm_min = minute\n // Changes nothing else\n })\n break\n case 'P':\n // Seems not to work; AM-PM\n // Could make fall-through instead since supposed to be a synonym despite PHP docs\n return false\n case 'p':\n // am-pm\n j = _addNext(j, /^(am|pm)/i, function (d) {\n // No effect on 'H' since already 24 hours but\n // works before or after setting of l/I hour\n amPmOffset = (/a/)\n .test(d) ? 0 : 12\n if (prevHour) {\n retObj.tm_hour += amPmOffset\n }\n })\n break\n case 's':\n // Unix timestamp (in seconds)\n j = _addNext(j, /^\\d+/, function (d) {\n var timestamp = parseInt(d, 10)\n var date = new Date(Date.UTC(timestamp * 1000))\n _reset(date)\n // Affects all fields, but can't be negative (and initial + not allowed)\n })\n break\n case 'S':\n // 00-59 seconds\n j = _addNext(j, /^[0-5]\\d/, // strptime also accepts 60-61 for some reason\n\n function (d) {\n var second = parseInt(d, 10)\n retObj.tm_sec = second\n // Changes nothing else\n })\n break\n case 'u':\n case 'w':\n // 0 (Sunday)-6(Saturday)\n j = _addNext(j, /^\\d/, function (d) {\n retObj.tm_wday = d - (formatChar === 'u')\n // Changes nothing else apparently\n })\n break\n case 'U':\n case 'V':\n case 'W':\n // Apparently ignored (week of year, from 1st Monday)\n break\n case 'y':\n // 69 (or higher) for 1969+, 68 (or lower) for 2068-\n // PHP docs say two-digit, but accepts one-digit (two-digit max):\n j = _addNext(j, /^\\d?\\d/,\n\n function (d) {\n d = parseInt(d, 10)\n var year = d >= 69 ? d : d + 100\n retObj.tm_year = year\n _date()\n if (!retObj.tm_yday) {\n retObj.tm_yday = -1\n }\n // Also changes wday; and sets yday to -1 (always?)\n })\n break\n case 'Y':\n // 2010 (4-digit year)\n // PHP docs say four-digit, but accepts one-digit (four-digit max):\n j = _addNext(j, /^\\d{1,4}/,\n\n function (d) {\n var year = (parseInt(d, 10)) - 1900\n retObj.tm_year = year\n _date()\n if (!retObj.tm_yday) {\n retObj.tm_yday = -1\n }\n // Also changes wday; and sets yday to -1 (always?)\n })\n break\n case 'z':\n // Timezone; on my system, strftime gives -0800,\n // but strptime seems not to alter hour setting\n break\n case 'Z':\n // Timezone; on my system, strftime gives PST, but strptime treats text as unparsed\n break\n default:\n throw new Error('Unrecognized formatting character in strptime()')\n }\n } catch (e) {\n if (e === 'No match in string') {\n // Allow us to exit\n // There was supposed to be a matching format but there wasn't\n return false\n }\n // Calculate skipping beyond initial percent too\n }\n ++i\n } else if (format.charAt(i) !== dateStr.charAt(j)) {\n // If extra whitespace at beginning or end of either, or between formats, no problem\n // (just a problem when between % and format specifier)\n\n // If the string has white-space, it is ok to ignore\n if (dateStr.charAt(j).search(_WS) !== -1) {\n j++\n // Let the next iteration try again with the same format character\n i--\n } else if (format.charAt(i).search(_NWS) !== -1) {\n // Any extra formatting characters besides white-space causes\n // problems (do check after WS though, as may just be WS in string before next character)\n return false\n }\n // Extra WS in format\n // Adjust strings when encounter non-matching whitespace, so they align in future checks above\n // Will check on next iteration (against same (non-WS) string character)\n } else {\n j++\n }\n }\n\n // POST-PROCESSING\n // Will also get extra whitespace; empty string if none\n retObj.unparsed = dateStr.slice(j)\n return retObj\n}\n"]} \ No newline at end of file
diff --git a/node_modules/locutus/php/datetime/strtotime.js b/node_modules/locutus/php/datetime/strtotime.js
new file mode 100644
index 0000000..b14a093
--- /dev/null
+++ b/node_modules/locutus/php/datetime/strtotime.js
@@ -0,0 +1,273 @@
+'use strict';
+
+module.exports = function strtotime(text, now) {
+ // discuss at: http://locutus.io/php/strtotime/
+ // original by: Caio Ariede (http://caioariede.com)
+ // improved by: Kevin van Zonneveld (http://kvz.io)
+ // improved by: Caio Ariede (http://caioariede.com)
+ // improved by: A. Matías Quezada (http://amatiasq.com)
+ // improved by: preuter
+ // improved by: Brett Zamir (http://brett-zamir.me)
+ // improved by: Mirko Faber
+ // input by: David
+ // bugfixed by: Wagner B. Soares
+ // bugfixed by: Artur Tchernychev
+ // bugfixed by: Stephan Bösch-Plepelits (http://github.com/plepe)
+ // note 1: Examples all have a fixed timestamp to prevent
+ // note 1: tests to fail because of variable time(zones)
+ // example 1: strtotime('+1 day', 1129633200)
+ // returns 1: 1129719600
+ // example 2: strtotime('+1 week 2 days 4 hours 2 seconds', 1129633200)
+ // returns 2: 1130425202
+ // example 3: strtotime('last month', 1129633200)
+ // returns 3: 1127041200
+ // example 4: strtotime('2009-05-04 08:30:00 GMT')
+ // returns 4: 1241425800
+ // example 5: strtotime('2009-05-04 08:30:00+00')
+ // returns 5: 1241425800
+ // example 6: strtotime('2009-05-04 08:30:00+02:00')
+ // returns 6: 1241418600
+ // example 7: strtotime('2009-05-04T08:30:00Z')
+ // returns 7: 1241425800
+
+ var parsed;
+ var match;
+ var today;
+ var year;
+ var date;
+ var days;
+ var ranges;
+ var len;
+ var times;
+ var regex;
+ var i;
+ var fail = false;
+
+ if (!text) {
+ return fail;
+ }
+
+ // Unecessary spaces
+ text = text.replace(/^\s+|\s+$/g, '').replace(/\s{2,}/g, ' ').replace(/[\t\r\n]/g, '').toLowerCase();
+
+ // in contrast to php, js Date.parse function interprets:
+ // dates given as yyyy-mm-dd as in timezone: UTC,
+ // dates with "." or "-" as MDY instead of DMY
+ // dates with two-digit years differently
+ // etc...etc...
+ // ...therefore we manually parse lots of common date formats
+ var pattern = new RegExp(['^(\\d{1,4})', '([\\-\\.\\/:])', '(\\d{1,2})', '([\\-\\.\\/:])', '(\\d{1,4})', '(?:\\s(\\d{1,2}):(\\d{2})?:?(\\d{2})?)?', '(?:\\s([A-Z]+)?)?$'].join(''));
+ match = text.match(pattern);
+
+ if (match && match[2] === match[4]) {
+ if (match[1] > 1901) {
+ switch (match[2]) {
+ case '-':
+ // YYYY-M-D
+ if (match[3] > 12 || match[5] > 31) {
+ return fail;
+ }
+
+ return new Date(match[1], parseInt(match[3], 10) - 1, match[5], match[6] || 0, match[7] || 0, match[8] || 0, match[9] || 0) / 1000;
+ case '.':
+ // YYYY.M.D is not parsed by strtotime()
+ return fail;
+ case '/':
+ // YYYY/M/D
+ if (match[3] > 12 || match[5] > 31) {
+ return fail;
+ }
+
+ return new Date(match[1], parseInt(match[3], 10) - 1, match[5], match[6] || 0, match[7] || 0, match[8] || 0, match[9] || 0) / 1000;
+ }
+ } else if (match[5] > 1901) {
+ switch (match[2]) {
+ case '-':
+ // D-M-YYYY
+ if (match[3] > 12 || match[1] > 31) {
+ return fail;
+ }
+
+ return new Date(match[5], parseInt(match[3], 10) - 1, match[1], match[6] || 0, match[7] || 0, match[8] || 0, match[9] || 0) / 1000;
+ case '.':
+ // D.M.YYYY
+ if (match[3] > 12 || match[1] > 31) {
+ return fail;
+ }
+
+ return new Date(match[5], parseInt(match[3], 10) - 1, match[1], match[6] || 0, match[7] || 0, match[8] || 0, match[9] || 0) / 1000;
+ case '/':
+ // M/D/YYYY
+ if (match[1] > 12 || match[3] > 31) {
+ return fail;
+ }
+
+ return new Date(match[5], parseInt(match[1], 10) - 1, match[3], match[6] || 0, match[7] || 0, match[8] || 0, match[9] || 0) / 1000;
+ }
+ } else {
+ switch (match[2]) {
+ case '-':
+ // YY-M-D
+ if (match[3] > 12 || match[5] > 31 || match[1] < 70 && match[1] > 38) {
+ return fail;
+ }
+
+ year = match[1] >= 0 && match[1] <= 38 ? +match[1] + 2000 : match[1];
+ return new Date(year, parseInt(match[3], 10) - 1, match[5], match[6] || 0, match[7] || 0, match[8] || 0, match[9] || 0) / 1000;
+ case '.':
+ // D.M.YY or H.MM.SS
+ if (match[5] >= 70) {
+ // D.M.YY
+ if (match[3] > 12 || match[1] > 31) {
+ return fail;
+ }
+
+ return new Date(match[5], parseInt(match[3], 10) - 1, match[1], match[6] || 0, match[7] || 0, match[8] || 0, match[9] || 0) / 1000;
+ }
+ if (match[5] < 60 && !match[6]) {
+ // H.MM.SS
+ if (match[1] > 23 || match[3] > 59) {
+ return fail;
+ }
+
+ today = new Date();
+ return new Date(today.getFullYear(), today.getMonth(), today.getDate(), match[1] || 0, match[3] || 0, match[5] || 0, match[9] || 0) / 1000;
+ }
+
+ // invalid format, cannot be parsed
+ return fail;
+ case '/':
+ // M/D/YY
+ if (match[1] > 12 || match[3] > 31 || match[5] < 70 && match[5] > 38) {
+ return fail;
+ }
+
+ year = match[5] >= 0 && match[5] <= 38 ? +match[5] + 2000 : match[5];
+ return new Date(year, parseInt(match[1], 10) - 1, match[3], match[6] || 0, match[7] || 0, match[8] || 0, match[9] || 0) / 1000;
+ case ':':
+ // HH:MM:SS
+ if (match[1] > 23 || match[3] > 59 || match[5] > 59) {
+ return fail;
+ }
+
+ today = new Date();
+ return new Date(today.getFullYear(), today.getMonth(), today.getDate(), match[1] || 0, match[3] || 0, match[5] || 0) / 1000;
+ }
+ }
+ }
+
+ // other formats and "now" should be parsed by Date.parse()
+ if (text === 'now') {
+ return now === null || isNaN(now) ? new Date().getTime() / 1000 | 0 : now | 0;
+ }
+ if (!isNaN(parsed = Date.parse(text))) {
+ return parsed / 1000 | 0;
+ }
+ // Browsers !== Chrome have problems parsing ISO 8601 date strings, as they do
+ // not accept lower case characters, space, or shortened time zones.
+ // Therefore, fix these problems and try again.
+ // Examples:
+ // 2015-04-15 20:33:59+02
+ // 2015-04-15 20:33:59z
+ // 2015-04-15t20:33:59+02:00
+ pattern = new RegExp(['^([0-9]{4}-[0-9]{2}-[0-9]{2})', '[ t]', '([0-9]{2}:[0-9]{2}:[0-9]{2}(\\.[0-9]+)?)', '([\\+-][0-9]{2}(:[0-9]{2})?|z)'].join(''));
+ match = text.match(pattern);
+ if (match) {
+ // @todo: time zone information
+ if (match[4] === 'z') {
+ match[4] = 'Z';
+ } else if (match[4].match(/^([+-][0-9]{2})$/)) {
+ match[4] = match[4] + ':00';
+ }
+
+ if (!isNaN(parsed = Date.parse(match[1] + 'T' + match[2] + match[4]))) {
+ return parsed / 1000 | 0;
+ }
+ }
+
+ date = now ? new Date(now * 1000) : new Date();
+ days = {
+ 'sun': 0,
+ 'mon': 1,
+ 'tue': 2,
+ 'wed': 3,
+ 'thu': 4,
+ 'fri': 5,
+ 'sat': 6
+ };
+ ranges = {
+ 'yea': 'FullYear',
+ 'mon': 'Month',
+ 'day': 'Date',
+ 'hou': 'Hours',
+ 'min': 'Minutes',
+ 'sec': 'Seconds'
+ };
+
+ function lastNext(type, range, modifier) {
+ var diff;
+ var day = days[range];
+
+ if (typeof day !== 'undefined') {
+ diff = day - date.getDay();
+
+ if (diff === 0) {
+ diff = 7 * modifier;
+ } else if (diff > 0 && type === 'last') {
+ diff -= 7;
+ } else if (diff < 0 && type === 'next') {
+ diff += 7;
+ }
+
+ date.setDate(date.getDate() + diff);
+ }
+ }
+
+ function process(val) {
+ // @todo: Reconcile this with regex using \s, taking into account
+ // browser issues with split and regexes
+ var splt = val.split(' ');
+ var type = splt[0];
+ var range = splt[1].substring(0, 3);
+ var typeIsNumber = /\d+/.test(type);
+ var ago = splt[2] === 'ago';
+ var num = (type === 'last' ? -1 : 1) * (ago ? -1 : 1);
+
+ if (typeIsNumber) {
+ num *= parseInt(type, 10);
+ }
+
+ if (ranges.hasOwnProperty(range) && !splt[1].match(/^mon(day|\.)?$/i)) {
+ return date['set' + ranges[range]](date['get' + ranges[range]]() + num);
+ }
+
+ if (range === 'wee') {
+ return date.setDate(date.getDate() + num * 7);
+ }
+
+ if (type === 'next' || type === 'last') {
+ lastNext(type, range, num);
+ } else if (!typeIsNumber) {
+ return false;
+ }
+
+ return true;
+ }
+
+ times = '(years?|months?|weeks?|days?|hours?|minutes?|min|seconds?|sec' + '|sunday|sun\\.?|monday|mon\\.?|tuesday|tue\\.?|wednesday|wed\\.?' + '|thursday|thu\\.?|friday|fri\\.?|saturday|sat\\.?)';
+ regex = '([+-]?\\d+\\s' + times + '|' + '(last|next)\\s' + times + ')(\\sago)?';
+
+ match = text.match(new RegExp(regex, 'gi'));
+ if (!match) {
+ return fail;
+ }
+
+ for (i = 0, len = match.length; i < len; i++) {
+ if (!process(match[i])) {
+ return fail;
+ }
+ }
+
+ return date.getTime() / 1000;
+};
+//# sourceMappingURL=strtotime.js.map \ No newline at end of file
diff --git a/node_modules/locutus/php/datetime/strtotime.js.map b/node_modules/locutus/php/datetime/strtotime.js.map
new file mode 100644
index 0000000..51b62a2
--- /dev/null
+++ b/node_modules/locutus/php/datetime/strtotime.js.map
@@ -0,0 +1 @@
+{"version":3,"sources":["../../../src/php/datetime/strtotime.js"],"names":["module","exports","strtotime","text","now","parsed","match","today","year","date","days","ranges","len","times","regex","i","fail","replace","toLowerCase","pattern","RegExp","join","Date","parseInt","getFullYear","getMonth","getDate","isNaN","getTime","parse","lastNext","type","range","modifier","diff","day","getDay","setDate","process","val","splt","split","substring","typeIsNumber","test","ago","num","hasOwnProperty","length"],"mappings":"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","file":"strtotime.js","sourcesContent":["module.exports = function strtotime (text, now) {\n // discuss at: http://locutus.io/php/strtotime/\n // original by: Caio Ariede (http://caioariede.com)\n // improved by: Kevin van Zonneveld (http://kvz.io)\n // improved by: Caio Ariede (http://caioariede.com)\n // improved by: A. Matías Quezada (http://amatiasq.com)\n // improved by: preuter\n // improved by: Brett Zamir (http://brett-zamir.me)\n // improved by: Mirko Faber\n // input by: David\n // bugfixed by: Wagner B. Soares\n // bugfixed by: Artur Tchernychev\n // bugfixed by: Stephan Bösch-Plepelits (http://github.com/plepe)\n // note 1: Examples all have a fixed timestamp to prevent\n // note 1: tests to fail because of variable time(zones)\n // example 1: strtotime('+1 day', 1129633200)\n // returns 1: 1129719600\n // example 2: strtotime('+1 week 2 days 4 hours 2 seconds', 1129633200)\n // returns 2: 1130425202\n // example 3: strtotime('last month', 1129633200)\n // returns 3: 1127041200\n // example 4: strtotime('2009-05-04 08:30:00 GMT')\n // returns 4: 1241425800\n // example 5: strtotime('2009-05-04 08:30:00+00')\n // returns 5: 1241425800\n // example 6: strtotime('2009-05-04 08:30:00+02:00')\n // returns 6: 1241418600\n // example 7: strtotime('2009-05-04T08:30:00Z')\n // returns 7: 1241425800\n\n var parsed\n var match\n var today\n var year\n var date\n var days\n var ranges\n var len\n var times\n var regex\n var i\n var fail = false\n\n if (!text) {\n return fail\n }\n\n // Unecessary spaces\n text = text.replace(/^\\s+|\\s+$/g, '')\n .replace(/\\s{2,}/g, ' ')\n .replace(/[\\t\\r\\n]/g, '')\n .toLowerCase()\n\n // in contrast to php, js Date.parse function interprets:\n // dates given as yyyy-mm-dd as in timezone: UTC,\n // dates with \".\" or \"-\" as MDY instead of DMY\n // dates with two-digit years differently\n // etc...etc...\n // ...therefore we manually parse lots of common date formats\n var pattern = new RegExp([\n '^(\\\\d{1,4})',\n '([\\\\-\\\\.\\\\/:])',\n '(\\\\d{1,2})',\n '([\\\\-\\\\.\\\\/:])',\n '(\\\\d{1,4})',\n '(?:\\\\s(\\\\d{1,2}):(\\\\d{2})?:?(\\\\d{2})?)?',\n '(?:\\\\s([A-Z]+)?)?$'\n ].join(''))\n match = text.match(pattern)\n\n if (match && match[2] === match[4]) {\n if (match[1] > 1901) {\n switch (match[2]) {\n case '-':\n // YYYY-M-D\n if (match[3] > 12 || match[5] > 31) {\n return fail\n }\n\n return new Date(match[1], parseInt(match[3], 10) - 1, match[5],\n match[6] || 0, match[7] || 0, match[8] || 0, match[9] || 0) / 1000\n case '.':\n // YYYY.M.D is not parsed by strtotime()\n return fail\n case '/':\n // YYYY/M/D\n if (match[3] > 12 || match[5] > 31) {\n return fail\n }\n\n return new Date(match[1], parseInt(match[3], 10) - 1, match[5],\n match[6] || 0, match[7] || 0, match[8] || 0, match[9] || 0) / 1000\n }\n } else if (match[5] > 1901) {\n switch (match[2]) {\n case '-':\n // D-M-YYYY\n if (match[3] > 12 || match[1] > 31) {\n return fail\n }\n\n return new Date(match[5], parseInt(match[3], 10) - 1, match[1],\n match[6] || 0, match[7] || 0, match[8] || 0, match[9] || 0) / 1000\n case '.':\n // D.M.YYYY\n if (match[3] > 12 || match[1] > 31) {\n return fail\n }\n\n return new Date(match[5], parseInt(match[3], 10) - 1, match[1],\n match[6] || 0, match[7] || 0, match[8] || 0, match[9] || 0) / 1000\n case '/':\n // M/D/YYYY\n if (match[1] > 12 || match[3] > 31) {\n return fail\n }\n\n return new Date(match[5], parseInt(match[1], 10) - 1, match[3],\n match[6] || 0, match[7] || 0, match[8] || 0, match[9] || 0) / 1000\n }\n } else {\n switch (match[2]) {\n case '-':\n // YY-M-D\n if (match[3] > 12 || match[5] > 31 || (match[1] < 70 && match[1] > 38)) {\n return fail\n }\n\n year = match[1] >= 0 && match[1] <= 38 ? +match[1] + 2000 : match[1]\n return new Date(year, parseInt(match[3], 10) - 1, match[5],\n match[6] || 0, match[7] || 0, match[8] || 0, match[9] || 0) / 1000\n case '.':\n // D.M.YY or H.MM.SS\n if (match[5] >= 70) {\n // D.M.YY\n if (match[3] > 12 || match[1] > 31) {\n return fail\n }\n\n return new Date(match[5], parseInt(match[3], 10) - 1, match[1],\n match[6] || 0, match[7] || 0, match[8] || 0, match[9] || 0) / 1000\n }\n if (match[5] < 60 && !match[6]) {\n // H.MM.SS\n if (match[1] > 23 || match[3] > 59) {\n return fail\n }\n\n today = new Date()\n return new Date(today.getFullYear(), today.getMonth(), today.getDate(),\n match[1] || 0, match[3] || 0, match[5] || 0, match[9] || 0) / 1000\n }\n\n // invalid format, cannot be parsed\n return fail\n case '/':\n // M/D/YY\n if (match[1] > 12 || match[3] > 31 || (match[5] < 70 && match[5] > 38)) {\n return fail\n }\n\n year = match[5] >= 0 && match[5] <= 38 ? +match[5] + 2000 : match[5]\n return new Date(year, parseInt(match[1], 10) - 1, match[3],\n match[6] || 0, match[7] || 0, match[8] || 0, match[9] || 0) / 1000\n case ':':\n // HH:MM:SS\n if (match[1] > 23 || match[3] > 59 || match[5] > 59) {\n return fail\n }\n\n today = new Date()\n return new Date(today.getFullYear(), today.getMonth(), today.getDate(),\n match[1] || 0, match[3] || 0, match[5] || 0) / 1000\n }\n }\n }\n\n // other formats and \"now\" should be parsed by Date.parse()\n if (text === 'now') {\n return now === null || isNaN(now)\n ? new Date().getTime() / 1000 | 0\n : now | 0\n }\n if (!isNaN(parsed = Date.parse(text))) {\n return parsed / 1000 | 0\n }\n // Browsers !== Chrome have problems parsing ISO 8601 date strings, as they do\n // not accept lower case characters, space, or shortened time zones.\n // Therefore, fix these problems and try again.\n // Examples:\n // 2015-04-15 20:33:59+02\n // 2015-04-15 20:33:59z\n // 2015-04-15t20:33:59+02:00\n pattern = new RegExp([\n '^([0-9]{4}-[0-9]{2}-[0-9]{2})',\n '[ t]',\n '([0-9]{2}:[0-9]{2}:[0-9]{2}(\\\\.[0-9]+)?)',\n '([\\\\+-][0-9]{2}(:[0-9]{2})?|z)'\n ].join(''))\n match = text.match(pattern)\n if (match) {\n // @todo: time zone information\n if (match[4] === 'z') {\n match[4] = 'Z'\n } else if (match[4].match(/^([+-][0-9]{2})$/)) {\n match[4] = match[4] + ':00'\n }\n\n if (!isNaN(parsed = Date.parse(match[1] + 'T' + match[2] + match[4]))) {\n return parsed / 1000 | 0\n }\n }\n\n date = now ? new Date(now * 1000) : new Date()\n days = {\n 'sun': 0,\n 'mon': 1,\n 'tue': 2,\n 'wed': 3,\n 'thu': 4,\n 'fri': 5,\n 'sat': 6\n }\n ranges = {\n 'yea': 'FullYear',\n 'mon': 'Month',\n 'day': 'Date',\n 'hou': 'Hours',\n 'min': 'Minutes',\n 'sec': 'Seconds'\n }\n\n function lastNext (type, range, modifier) {\n var diff\n var day = days[range]\n\n if (typeof day !== 'undefined') {\n diff = day - date.getDay()\n\n if (diff === 0) {\n diff = 7 * modifier\n } else if (diff > 0 && type === 'last') {\n diff -= 7\n } else if (diff < 0 && type === 'next') {\n diff += 7\n }\n\n date.setDate(date.getDate() + diff)\n }\n }\n\n function process (val) {\n // @todo: Reconcile this with regex using \\s, taking into account\n // browser issues with split and regexes\n var splt = val.split(' ')\n var type = splt[0]\n var range = splt[1].substring(0, 3)\n var typeIsNumber = /\\d+/.test(type)\n var ago = splt[2] === 'ago'\n var num = (type === 'last' ? -1 : 1) * (ago ? -1 : 1)\n\n if (typeIsNumber) {\n num *= parseInt(type, 10)\n }\n\n if (ranges.hasOwnProperty(range) && !splt[1].match(/^mon(day|\\.)?$/i)) {\n return date['set' + ranges[range]](date['get' + ranges[range]]() + num)\n }\n\n if (range === 'wee') {\n return date.setDate(date.getDate() + (num * 7))\n }\n\n if (type === 'next' || type === 'last') {\n lastNext(type, range, num)\n } else if (!typeIsNumber) {\n return false\n }\n\n return true\n }\n\n times = '(years?|months?|weeks?|days?|hours?|minutes?|min|seconds?|sec' +\n '|sunday|sun\\\\.?|monday|mon\\\\.?|tuesday|tue\\\\.?|wednesday|wed\\\\.?' +\n '|thursday|thu\\\\.?|friday|fri\\\\.?|saturday|sat\\\\.?)'\n regex = '([+-]?\\\\d+\\\\s' + times + '|' + '(last|next)\\\\s' + times + ')(\\\\sago)?'\n\n match = text.match(new RegExp(regex, 'gi'))\n if (!match) {\n return fail\n }\n\n for (i = 0, len = match.length; i < len; i++) {\n if (!process(match[i])) {\n return fail\n }\n }\n\n return (date.getTime() / 1000)\n}\n"]} \ No newline at end of file
diff --git a/node_modules/locutus/php/datetime/time.js b/node_modules/locutus/php/datetime/time.js
new file mode 100644
index 0000000..0c53101
--- /dev/null
+++ b/node_modules/locutus/php/datetime/time.js
@@ -0,0 +1,15 @@
+"use strict";
+
+module.exports = function time() {
+ // discuss at: http://locutus.io/php/time/
+ // original by: GeekFG (http://geekfg.blogspot.com)
+ // improved by: Kevin van Zonneveld (http://kvz.io)
+ // improved by: metjay
+ // improved by: HKM
+ // example 1: var $timeStamp = time()
+ // example 1: var $result = $timeStamp > 1000000000 && $timeStamp < 2000000000
+ // returns 1: true
+
+ return Math.floor(new Date().getTime() / 1000);
+};
+//# sourceMappingURL=time.js.map \ No newline at end of file
diff --git a/node_modules/locutus/php/datetime/time.js.map b/node_modules/locutus/php/datetime/time.js.map
new file mode 100644
index 0000000..f9c3a7f
--- /dev/null
+++ b/node_modules/locutus/php/datetime/time.js.map
@@ -0,0 +1 @@
+{"version":3,"sources":["../../../src/php/datetime/time.js"],"names":["module","exports","time","Math","floor","Date","getTime"],"mappings":";;AAAAA,OAAOC,OAAP,GAAiB,SAASC,IAAT,GAAiB;AAChC;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA,SAAOC,KAAKC,KAAL,CAAW,IAAIC,IAAJ,GAAWC,OAAX,KAAuB,IAAlC,CAAP;AACD,CAXD","file":"time.js","sourcesContent":["module.exports = function time () {\n // discuss at: http://locutus.io/php/time/\n // original by: GeekFG (http://geekfg.blogspot.com)\n // improved by: Kevin van Zonneveld (http://kvz.io)\n // improved by: metjay\n // improved by: HKM\n // example 1: var $timeStamp = time()\n // example 1: var $result = $timeStamp > 1000000000 && $timeStamp < 2000000000\n // returns 1: true\n\n return Math.floor(new Date().getTime() / 1000)\n}\n"]} \ No newline at end of file