summaryrefslogtreecommitdiff
path: root/node_modules/locutus/php/info
diff options
context:
space:
mode:
Diffstat (limited to 'node_modules/locutus/php/info')
-rw-r--r--node_modules/locutus/php/info/assert_options.js43
-rw-r--r--node_modules/locutus/php/info/assert_options.js.map1
-rw-r--r--node_modules/locutus/php/info/getenv.js15
-rw-r--r--node_modules/locutus/php/info/getenv.js.map1
-rw-r--r--node_modules/locutus/php/info/index.js9
-rw-r--r--node_modules/locutus/php/info/index.js.map1
-rw-r--r--node_modules/locutus/php/info/ini_get.js27
-rw-r--r--node_modules/locutus/php/info/ini_get.js.map1
-rw-r--r--node_modules/locutus/php/info/ini_set.js50
-rw-r--r--node_modules/locutus/php/info/ini_set.js.map1
-rw-r--r--node_modules/locutus/php/info/set_time_limit.js23
-rw-r--r--node_modules/locutus/php/info/set_time_limit.js.map1
-rw-r--r--node_modules/locutus/php/info/version_compare.js118
-rw-r--r--node_modules/locutus/php/info/version_compare.js.map1
14 files changed, 292 insertions, 0 deletions
diff --git a/node_modules/locutus/php/info/assert_options.js b/node_modules/locutus/php/info/assert_options.js
new file mode 100644
index 0000000..76aacdc
--- /dev/null
+++ b/node_modules/locutus/php/info/assert_options.js
@@ -0,0 +1,43 @@
+'use strict';
+
+module.exports = function assert_options(what, value) {
+ // eslint-disable-line camelcase
+ // discuss at: http://locutus.io/php/assert_options/
+ // original by: Brett Zamir (http://brett-zamir.me)
+ // example 1: assert_options('ASSERT_CALLBACK')
+ // returns 1: null
+
+ var iniKey, defaultVal;
+ switch (what) {
+ case 'ASSERT_ACTIVE':
+ iniKey = 'assert.active';
+ defaultVal = 1;
+ break;
+ case 'ASSERT_WARNING':
+ iniKey = 'assert.warning';
+ defaultVal = 1;
+ var msg = 'We have not yet implemented warnings for us to throw ';
+ msg += 'in JavaScript (assert_options())';
+ throw new Error(msg);
+ case 'ASSERT_BAIL':
+ iniKey = 'assert.bail';
+ defaultVal = 0;
+ break;
+ case 'ASSERT_QUIET_EVAL':
+ iniKey = 'assert.quiet_eval';
+ defaultVal = 0;
+ break;
+ case 'ASSERT_CALLBACK':
+ iniKey = 'assert.callback';
+ defaultVal = null;
+ break;
+ default:
+ throw new Error('Improper type for assert_options()');
+ }
+
+ // I presume this is to be the most recent value, instead of the default value
+ var iniVal = (typeof require !== 'undefined' ? require('../info/ini_get')(iniKey) : undefined) || defaultVal;
+
+ return iniVal;
+};
+//# sourceMappingURL=assert_options.js.map \ No newline at end of file
diff --git a/node_modules/locutus/php/info/assert_options.js.map b/node_modules/locutus/php/info/assert_options.js.map
new file mode 100644
index 0000000..d72f948
--- /dev/null
+++ b/node_modules/locutus/php/info/assert_options.js.map
@@ -0,0 +1 @@
+{"version":3,"sources":["../../../src/php/info/assert_options.js"],"names":["module","exports","assert_options","what","value","iniKey","defaultVal","msg","Error","iniVal","require","undefined"],"mappings":";;AAAAA,OAAOC,OAAP,GAAiB,SAASC,cAAT,CAAyBC,IAAzB,EAA+BC,KAA/B,EAAsC;AAAE;AACvD;AACA;AACA;AACA;;AAEA,MAAIC,MAAJ,EAAYC,UAAZ;AACA,UAAQH,IAAR;AACE,SAAK,eAAL;AACEE,eAAS,eAAT;AACAC,mBAAa,CAAb;AACA;AACF,SAAK,gBAAL;AACED,eAAS,gBAAT;AACAC,mBAAa,CAAb;AACA,UAAIC,MAAM,uDAAV;AACAA,aAAO,kCAAP;AACA,YAAM,IAAIC,KAAJ,CAAUD,GAAV,CAAN;AACF,SAAK,aAAL;AACEF,eAAS,aAAT;AACAC,mBAAa,CAAb;AACA;AACF,SAAK,mBAAL;AACED,eAAS,mBAAT;AACAC,mBAAa,CAAb;AACA;AACF,SAAK,iBAAL;AACED,eAAS,iBAAT;AACAC,mBAAa,IAAb;AACA;AACF;AACE,YAAM,IAAIE,KAAJ,CAAU,oCAAV,CAAN;AAxBJ;;AA2BA;AACA,MAAIC,SAAS,CAAC,OAAOC,OAAP,KAAmB,WAAnB,GAAiCA,QAAQ,iBAAR,EAA2BL,MAA3B,CAAjC,GAAsEM,SAAvE,KAAqFL,UAAlG;;AAEA,SAAOG,MAAP;AACD,CAtCD","file":"assert_options.js","sourcesContent":["module.exports = function assert_options (what, value) { // eslint-disable-line camelcase\n // discuss at: http://locutus.io/php/assert_options/\n // original by: Brett Zamir (http://brett-zamir.me)\n // example 1: assert_options('ASSERT_CALLBACK')\n // returns 1: null\n\n var iniKey, defaultVal\n switch (what) {\n case 'ASSERT_ACTIVE':\n iniKey = 'assert.active'\n defaultVal = 1\n break\n case 'ASSERT_WARNING':\n iniKey = 'assert.warning'\n defaultVal = 1\n var msg = 'We have not yet implemented warnings for us to throw '\n msg += 'in JavaScript (assert_options())'\n throw new Error(msg)\n case 'ASSERT_BAIL':\n iniKey = 'assert.bail'\n defaultVal = 0\n break\n case 'ASSERT_QUIET_EVAL':\n iniKey = 'assert.quiet_eval'\n defaultVal = 0\n break\n case 'ASSERT_CALLBACK':\n iniKey = 'assert.callback'\n defaultVal = null\n break\n default:\n throw new Error('Improper type for assert_options()')\n }\n\n // I presume this is to be the most recent value, instead of the default value\n var iniVal = (typeof require !== 'undefined' ? require('../info/ini_get')(iniKey) : undefined) || defaultVal\n\n return iniVal\n}\n"]} \ No newline at end of file
diff --git a/node_modules/locutus/php/info/getenv.js b/node_modules/locutus/php/info/getenv.js
new file mode 100644
index 0000000..8193e95
--- /dev/null
+++ b/node_modules/locutus/php/info/getenv.js
@@ -0,0 +1,15 @@
+'use strict';
+
+module.exports = function getenv(varname) {
+ // discuss at: http://locutus.io/php/getenv/
+ // original by: Brett Zamir (http://brett-zamir.me)
+ // example 1: getenv('LC_ALL')
+ // returns 1: false
+
+ if (typeof process !== 'undefined' || !process.env || !process.env[varname]) {
+ return false;
+ }
+
+ return process.env[varname];
+};
+//# sourceMappingURL=getenv.js.map \ No newline at end of file
diff --git a/node_modules/locutus/php/info/getenv.js.map b/node_modules/locutus/php/info/getenv.js.map
new file mode 100644
index 0000000..5c877d3
--- /dev/null
+++ b/node_modules/locutus/php/info/getenv.js.map
@@ -0,0 +1 @@
+{"version":3,"sources":["../../../src/php/info/getenv.js"],"names":["module","exports","getenv","varname","process","env"],"mappings":";;AAAAA,OAAOC,OAAP,GAAiB,SAASC,MAAT,CAAiBC,OAAjB,EAA0B;AACzC;AACA;AACA;AACA;;AAEA,MAAI,OAAOC,OAAP,KAAmB,WAAnB,IAAkC,CAACA,QAAQC,GAA3C,IAAkD,CAACD,QAAQC,GAAR,CAAYF,OAAZ,CAAvD,EAA6E;AAC3E,WAAO,KAAP;AACD;;AAED,SAAOC,QAAQC,GAAR,CAAYF,OAAZ,CAAP;AACD,CAXD","file":"getenv.js","sourcesContent":["module.exports = function getenv (varname) {\n // discuss at: http://locutus.io/php/getenv/\n // original by: Brett Zamir (http://brett-zamir.me)\n // example 1: getenv('LC_ALL')\n // returns 1: false\n\n if (typeof process !== 'undefined' || !process.env || !process.env[varname]) {\n return false\n }\n\n return process.env[varname]\n}\n"]} \ No newline at end of file
diff --git a/node_modules/locutus/php/info/index.js b/node_modules/locutus/php/info/index.js
new file mode 100644
index 0000000..bad9c52
--- /dev/null
+++ b/node_modules/locutus/php/info/index.js
@@ -0,0 +1,9 @@
+'use strict';
+
+module.exports['assert_options'] = require('./assert_options');
+module.exports['getenv'] = require('./getenv');
+module.exports['ini_get'] = require('./ini_get');
+module.exports['ini_set'] = require('./ini_set');
+module.exports['set_time_limit'] = require('./set_time_limit');
+module.exports['version_compare'] = require('./version_compare');
+//# sourceMappingURL=index.js.map \ No newline at end of file
diff --git a/node_modules/locutus/php/info/index.js.map b/node_modules/locutus/php/info/index.js.map
new file mode 100644
index 0000000..31858db
--- /dev/null
+++ b/node_modules/locutus/php/info/index.js.map
@@ -0,0 +1 @@
+{"version":3,"sources":["../../../src/php/info/index.js"],"names":["module","exports","require"],"mappings":";;AAAAA,OAAOC,OAAP,CAAe,gBAAf,IAAmCC,QAAQ,kBAAR,CAAnC;AACAF,OAAOC,OAAP,CAAe,QAAf,IAA2BC,QAAQ,UAAR,CAA3B;AACAF,OAAOC,OAAP,CAAe,SAAf,IAA4BC,QAAQ,WAAR,CAA5B;AACAF,OAAOC,OAAP,CAAe,SAAf,IAA4BC,QAAQ,WAAR,CAA5B;AACAF,OAAOC,OAAP,CAAe,gBAAf,IAAmCC,QAAQ,kBAAR,CAAnC;AACAF,OAAOC,OAAP,CAAe,iBAAf,IAAoCC,QAAQ,mBAAR,CAApC","file":"index.js","sourcesContent":["module.exports['assert_options'] = require('./assert_options')\nmodule.exports['getenv'] = require('./getenv')\nmodule.exports['ini_get'] = require('./ini_get')\nmodule.exports['ini_set'] = require('./ini_set')\nmodule.exports['set_time_limit'] = require('./set_time_limit')\nmodule.exports['version_compare'] = require('./version_compare')\n"]} \ No newline at end of file
diff --git a/node_modules/locutus/php/info/ini_get.js b/node_modules/locutus/php/info/ini_get.js
new file mode 100644
index 0000000..4a4f052
--- /dev/null
+++ b/node_modules/locutus/php/info/ini_get.js
@@ -0,0 +1,27 @@
+'use strict';
+
+module.exports = function ini_get(varname) {
+ // eslint-disable-line camelcase
+ // discuss at: http://locutus.io/php/ini_get/
+ // original by: Brett Zamir (http://brett-zamir.me)
+ // note 1: The ini values must be set by ini_set or manually within an ini file
+ // example 1: ini_set('date.timezone', 'Asia/Hong_Kong')
+ // example 1: ini_get('date.timezone')
+ // returns 1: 'Asia/Hong_Kong'
+
+ var $global = typeof window !== 'undefined' ? window : global;
+ $global.$locutus = $global.$locutus || {};
+ var $locutus = $global.$locutus;
+ $locutus.php = $locutus.php || {};
+ $locutus.php.ini = $locutus.php.ini || {};
+
+ if ($locutus.php.ini[varname] && $locutus.php.ini[varname].local_value !== undefined) {
+ if ($locutus.php.ini[varname].local_value === null) {
+ return '';
+ }
+ return $locutus.php.ini[varname].local_value;
+ }
+
+ return '';
+};
+//# sourceMappingURL=ini_get.js.map \ No newline at end of file
diff --git a/node_modules/locutus/php/info/ini_get.js.map b/node_modules/locutus/php/info/ini_get.js.map
new file mode 100644
index 0000000..ed77eb0
--- /dev/null
+++ b/node_modules/locutus/php/info/ini_get.js.map
@@ -0,0 +1 @@
+{"version":3,"sources":["../../../src/php/info/ini_get.js"],"names":["module","exports","ini_get","varname","$global","window","global","$locutus","php","ini","local_value","undefined"],"mappings":";;AAAAA,OAAOC,OAAP,GAAiB,SAASC,OAAT,CAAkBC,OAAlB,EAA2B;AAAE;AAC5C;AACA;AACA;AACA;AACA;AACA;;AAEA,MAAIC,UAAW,OAAOC,MAAP,KAAkB,WAAlB,GAAgCA,MAAhC,GAAyCC,MAAxD;AACAF,UAAQG,QAAR,GAAmBH,QAAQG,QAAR,IAAoB,EAAvC;AACA,MAAIA,WAAWH,QAAQG,QAAvB;AACAA,WAASC,GAAT,GAAeD,SAASC,GAAT,IAAgB,EAA/B;AACAD,WAASC,GAAT,CAAaC,GAAb,GAAmBF,SAASC,GAAT,CAAaC,GAAb,IAAoB,EAAvC;;AAEA,MAAIF,SAASC,GAAT,CAAaC,GAAb,CAAiBN,OAAjB,KAA6BI,SAASC,GAAT,CAAaC,GAAb,CAAiBN,OAAjB,EAA0BO,WAA1B,KAA0CC,SAA3E,EAAsF;AACpF,QAAIJ,SAASC,GAAT,CAAaC,GAAb,CAAiBN,OAAjB,EAA0BO,WAA1B,KAA0C,IAA9C,EAAoD;AAClD,aAAO,EAAP;AACD;AACD,WAAOH,SAASC,GAAT,CAAaC,GAAb,CAAiBN,OAAjB,EAA0BO,WAAjC;AACD;;AAED,SAAO,EAAP;AACD,CAtBD","file":"ini_get.js","sourcesContent":["module.exports = function ini_get (varname) { // eslint-disable-line camelcase\n // discuss at: http://locutus.io/php/ini_get/\n // original by: Brett Zamir (http://brett-zamir.me)\n // note 1: The ini values must be set by ini_set or manually within an ini file\n // example 1: ini_set('date.timezone', 'Asia/Hong_Kong')\n // example 1: ini_get('date.timezone')\n // returns 1: 'Asia/Hong_Kong'\n\n var $global = (typeof window !== 'undefined' ? window : global)\n $global.$locutus = $global.$locutus || {}\n var $locutus = $global.$locutus\n $locutus.php = $locutus.php || {}\n $locutus.php.ini = $locutus.php.ini || {}\n\n if ($locutus.php.ini[varname] && $locutus.php.ini[varname].local_value !== undefined) {\n if ($locutus.php.ini[varname].local_value === null) {\n return ''\n }\n return $locutus.php.ini[varname].local_value\n }\n\n return ''\n}\n"]} \ No newline at end of file
diff --git a/node_modules/locutus/php/info/ini_set.js b/node_modules/locutus/php/info/ini_set.js
new file mode 100644
index 0000000..efd0ddc
--- /dev/null
+++ b/node_modules/locutus/php/info/ini_set.js
@@ -0,0 +1,50 @@
+'use strict';
+
+module.exports = function ini_set(varname, newvalue) {
+ // eslint-disable-line camelcase
+ // discuss at: http://locutus.io/php/ini_set/
+ // original by: Brett Zamir (http://brett-zamir.me)
+ // note 1: This will not set a global_value or access level for the ini item
+ // example 1: ini_set('date.timezone', 'Asia/Hong_Kong')
+ // example 1: ini_set('date.timezone', 'America/Chicago')
+ // returns 1: 'Asia/Hong_Kong'
+
+ var $global = typeof window !== 'undefined' ? window : global;
+ $global.$locutus = $global.$locutus || {};
+ var $locutus = $global.$locutus;
+ $locutus.php = $locutus.php || {};
+ $locutus.php.ini = $locutus.php.ini || {};
+
+ $locutus.php.ini = $locutus.php.ini || {};
+ $locutus.php.ini[varname] = $locutus.php.ini[varname] || {};
+
+ var oldval = $locutus.php.ini[varname].local_value;
+
+ var lowerStr = (newvalue + '').toLowerCase().trim();
+ if (newvalue === true || lowerStr === 'on' || lowerStr === '1') {
+ newvalue = 'on';
+ }
+ if (newvalue === false || lowerStr === 'off' || lowerStr === '0') {
+ newvalue = 'off';
+ }
+
+ var _setArr = function _setArr(oldval) {
+ // Although these are set individually, they are all accumulated
+ if (typeof oldval === 'undefined') {
+ $locutus.ini[varname].local_value = [];
+ }
+ $locutus.ini[varname].local_value.push(newvalue);
+ };
+
+ switch (varname) {
+ case 'extension':
+ _setArr(oldval, newvalue);
+ break;
+ default:
+ $locutus.php.ini[varname].local_value = newvalue;
+ break;
+ }
+
+ return oldval;
+};
+//# sourceMappingURL=ini_set.js.map \ No newline at end of file
diff --git a/node_modules/locutus/php/info/ini_set.js.map b/node_modules/locutus/php/info/ini_set.js.map
new file mode 100644
index 0000000..94e452e
--- /dev/null
+++ b/node_modules/locutus/php/info/ini_set.js.map
@@ -0,0 +1 @@
+{"version":3,"sources":["../../../src/php/info/ini_set.js"],"names":["module","exports","ini_set","varname","newvalue","$global","window","global","$locutus","php","ini","oldval","local_value","lowerStr","toLowerCase","trim","_setArr","push"],"mappings":";;AAAAA,OAAOC,OAAP,GAAiB,SAASC,OAAT,CAAkBC,OAAlB,EAA2BC,QAA3B,EAAqC;AAAE;AACtD;AACA;AACA;AACA;AACA;AACA;;AAEA,MAAIC,UAAW,OAAOC,MAAP,KAAkB,WAAlB,GAAgCA,MAAhC,GAAyCC,MAAxD;AACAF,UAAQG,QAAR,GAAmBH,QAAQG,QAAR,IAAoB,EAAvC;AACA,MAAIA,WAAWH,QAAQG,QAAvB;AACAA,WAASC,GAAT,GAAeD,SAASC,GAAT,IAAgB,EAA/B;AACAD,WAASC,GAAT,CAAaC,GAAb,GAAmBF,SAASC,GAAT,CAAaC,GAAb,IAAoB,EAAvC;;AAEAF,WAASC,GAAT,CAAaC,GAAb,GAAmBF,SAASC,GAAT,CAAaC,GAAb,IAAoB,EAAvC;AACAF,WAASC,GAAT,CAAaC,GAAb,CAAiBP,OAAjB,IAA4BK,SAASC,GAAT,CAAaC,GAAb,CAAiBP,OAAjB,KAA6B,EAAzD;;AAEA,MAAIQ,SAASH,SAASC,GAAT,CAAaC,GAAb,CAAiBP,OAAjB,EAA0BS,WAAvC;;AAEA,MAAIC,WAAW,CAACT,WAAW,EAAZ,EAAgBU,WAAhB,GAA8BC,IAA9B,EAAf;AACA,MAAIX,aAAa,IAAb,IAAqBS,aAAa,IAAlC,IAA0CA,aAAa,GAA3D,EAAgE;AAC9DT,eAAW,IAAX;AACD;AACD,MAAIA,aAAa,KAAb,IAAsBS,aAAa,KAAnC,IAA4CA,aAAa,GAA7D,EAAkE;AAChET,eAAW,KAAX;AACD;;AAED,MAAIY,UAAU,SAAVA,OAAU,CAAUL,MAAV,EAAkB;AAC9B;AACA,QAAI,OAAOA,MAAP,KAAkB,WAAtB,EAAmC;AACjCH,eAASE,GAAT,CAAaP,OAAb,EAAsBS,WAAtB,GAAoC,EAApC;AACD;AACDJ,aAASE,GAAT,CAAaP,OAAb,EAAsBS,WAAtB,CAAkCK,IAAlC,CAAuCb,QAAvC;AACD,GAND;;AAQA,UAAQD,OAAR;AACE,SAAK,WAAL;AACEa,cAAQL,MAAR,EAAgBP,QAAhB;AACA;AACF;AACEI,eAASC,GAAT,CAAaC,GAAb,CAAiBP,OAAjB,EAA0BS,WAA1B,GAAwCR,QAAxC;AACA;AANJ;;AASA,SAAOO,MAAP;AACD,CA7CD","file":"ini_set.js","sourcesContent":["module.exports = function ini_set (varname, newvalue) { // eslint-disable-line camelcase\n // discuss at: http://locutus.io/php/ini_set/\n // original by: Brett Zamir (http://brett-zamir.me)\n // note 1: This will not set a global_value or access level for the ini item\n // example 1: ini_set('date.timezone', 'Asia/Hong_Kong')\n // example 1: ini_set('date.timezone', 'America/Chicago')\n // returns 1: 'Asia/Hong_Kong'\n\n var $global = (typeof window !== 'undefined' ? window : global)\n $global.$locutus = $global.$locutus || {}\n var $locutus = $global.$locutus\n $locutus.php = $locutus.php || {}\n $locutus.php.ini = $locutus.php.ini || {}\n\n $locutus.php.ini = $locutus.php.ini || {}\n $locutus.php.ini[varname] = $locutus.php.ini[varname] || {}\n\n var oldval = $locutus.php.ini[varname].local_value\n\n var lowerStr = (newvalue + '').toLowerCase().trim()\n if (newvalue === true || lowerStr === 'on' || lowerStr === '1') {\n newvalue = 'on'\n }\n if (newvalue === false || lowerStr === 'off' || lowerStr === '0') {\n newvalue = 'off'\n }\n\n var _setArr = function (oldval) {\n // Although these are set individually, they are all accumulated\n if (typeof oldval === 'undefined') {\n $locutus.ini[varname].local_value = []\n }\n $locutus.ini[varname].local_value.push(newvalue)\n }\n\n switch (varname) {\n case 'extension':\n _setArr(oldval, newvalue)\n break\n default:\n $locutus.php.ini[varname].local_value = newvalue\n break\n }\n\n return oldval\n}\n"]} \ No newline at end of file
diff --git a/node_modules/locutus/php/info/set_time_limit.js b/node_modules/locutus/php/info/set_time_limit.js
new file mode 100644
index 0000000..63422eb
--- /dev/null
+++ b/node_modules/locutus/php/info/set_time_limit.js
@@ -0,0 +1,23 @@
+'use strict';
+
+module.exports = function set_time_limit(seconds) {
+ // eslint-disable-line camelcase
+ // discuss at: http://locutus.io/php/set_time_limit/
+ // original by: Brett Zamir (http://brett-zamir.me)
+ // test: skip-all
+ // example 1: set_time_limit(4)
+ // returns 1: undefined
+
+ var $global = typeof window !== 'undefined' ? window : global;
+ $global.$locutus = $global.$locutus || {};
+ var $locutus = $global.$locutus;
+ $locutus.php = $locutus.php || {};
+
+ setTimeout(function () {
+ if (!$locutus.php.timeoutStatus) {
+ $locutus.php.timeoutStatus = true;
+ }
+ throw new Error('Maximum execution time exceeded');
+ }, seconds * 1000);
+};
+//# sourceMappingURL=set_time_limit.js.map \ No newline at end of file
diff --git a/node_modules/locutus/php/info/set_time_limit.js.map b/node_modules/locutus/php/info/set_time_limit.js.map
new file mode 100644
index 0000000..51bbf57
--- /dev/null
+++ b/node_modules/locutus/php/info/set_time_limit.js.map
@@ -0,0 +1 @@
+{"version":3,"sources":["../../../src/php/info/set_time_limit.js"],"names":["module","exports","set_time_limit","seconds","$global","window","global","$locutus","php","setTimeout","timeoutStatus","Error"],"mappings":";;AAAAA,OAAOC,OAAP,GAAiB,SAASC,cAAT,CAAyBC,OAAzB,EAAkC;AAAE;AACnD;AACA;AACA;AACA;AACA;;AAEA,MAAIC,UAAW,OAAOC,MAAP,KAAkB,WAAlB,GAAgCA,MAAhC,GAAyCC,MAAxD;AACAF,UAAQG,QAAR,GAAmBH,QAAQG,QAAR,IAAoB,EAAvC;AACA,MAAIA,WAAWH,QAAQG,QAAvB;AACAA,WAASC,GAAT,GAAeD,SAASC,GAAT,IAAgB,EAA/B;;AAEAC,aAAW,YAAY;AACrB,QAAI,CAACF,SAASC,GAAT,CAAaE,aAAlB,EAAiC;AAC/BH,eAASC,GAAT,CAAaE,aAAb,GAA6B,IAA7B;AACD;AACD,UAAM,IAAIC,KAAJ,CAAU,iCAAV,CAAN;AACD,GALD,EAKGR,UAAU,IALb;AAMD,CAlBD","file":"set_time_limit.js","sourcesContent":["module.exports = function set_time_limit (seconds) { // eslint-disable-line camelcase\n // discuss at: http://locutus.io/php/set_time_limit/\n // original by: Brett Zamir (http://brett-zamir.me)\n // test: skip-all\n // example 1: set_time_limit(4)\n // returns 1: undefined\n\n var $global = (typeof window !== 'undefined' ? window : global)\n $global.$locutus = $global.$locutus || {}\n var $locutus = $global.$locutus\n $locutus.php = $locutus.php || {}\n\n setTimeout(function () {\n if (!$locutus.php.timeoutStatus) {\n $locutus.php.timeoutStatus = true\n }\n throw new Error('Maximum execution time exceeded')\n }, seconds * 1000)\n}\n"]} \ No newline at end of file
diff --git a/node_modules/locutus/php/info/version_compare.js b/node_modules/locutus/php/info/version_compare.js
new file mode 100644
index 0000000..7f600d8
--- /dev/null
+++ b/node_modules/locutus/php/info/version_compare.js
@@ -0,0 +1,118 @@
+'use strict';
+
+module.exports = function version_compare(v1, v2, operator) {
+ // eslint-disable-line camelcase
+ // discuss at: http://locutus.io/php/version_compare/
+ // original by: Philippe Jausions (http://pear.php.net/user/jausions)
+ // original by: Aidan Lister (http://aidanlister.com/)
+ // reimplemented by: Kankrelune (http://www.webfaktory.info/)
+ // improved by: Brett Zamir (http://brett-zamir.me)
+ // improved by: Scott Baker
+ // improved by: Theriault (https://github.com/Theriault)
+ // example 1: version_compare('8.2.5rc', '8.2.5a')
+ // returns 1: 1
+ // example 2: version_compare('8.2.50', '8.2.52', '<')
+ // returns 2: true
+ // example 3: version_compare('5.3.0-dev', '5.3.0')
+ // returns 3: -1
+ // example 4: version_compare('4.1.0.52','4.01.0.51')
+ // returns 4: 1
+
+ // Important: compare must be initialized at 0.
+ var i;
+ var x;
+ var compare = 0;
+
+ // vm maps textual PHP versions to negatives so they're less than 0.
+ // PHP currently defines these as CASE-SENSITIVE. It is important to
+ // leave these as negatives so that they can come before numerical versions
+ // and as if no letters were there to begin with.
+ // (1alpha is < 1 and < 1.1 but > 1dev1)
+ // If a non-numerical value can't be mapped to this table, it receives
+ // -7 as its value.
+ var vm = {
+ 'dev': -6,
+ 'alpha': -5,
+ 'a': -5,
+ 'beta': -4,
+ 'b': -4,
+ 'RC': -3,
+ 'rc': -3,
+ '#': -2,
+ 'p': 1,
+ 'pl': 1
+ };
+
+ // This function will be called to prepare each version argument.
+ // It replaces every _, -, and + with a dot.
+ // It surrounds any nonsequence of numbers/dots with dots.
+ // It replaces sequences of dots with a single dot.
+ // version_compare('4..0', '4.0') === 0
+ // Important: A string of 0 length needs to be converted into a value
+ // even less than an unexisting value in vm (-7), hence [-8].
+ // It's also important to not strip spaces because of this.
+ // version_compare('', ' ') === 1
+ var _prepVersion = function _prepVersion(v) {
+ v = ('' + v).replace(/[_\-+]/g, '.');
+ v = v.replace(/([^.\d]+)/g, '.$1.').replace(/\.{2,}/g, '.');
+ return !v.length ? [-8] : v.split('.');
+ };
+ // This converts a version component to a number.
+ // Empty component becomes 0.
+ // Non-numerical component becomes a negative number.
+ // Numerical component becomes itself as an integer.
+ var _numVersion = function _numVersion(v) {
+ return !v ? 0 : isNaN(v) ? vm[v] || -7 : parseInt(v, 10);
+ };
+
+ v1 = _prepVersion(v1);
+ v2 = _prepVersion(v2);
+ x = Math.max(v1.length, v2.length);
+ for (i = 0; i < x; i++) {
+ if (v1[i] === v2[i]) {
+ continue;
+ }
+ v1[i] = _numVersion(v1[i]);
+ v2[i] = _numVersion(v2[i]);
+ if (v1[i] < v2[i]) {
+ compare = -1;
+ break;
+ } else if (v1[i] > v2[i]) {
+ compare = 1;
+ break;
+ }
+ }
+ if (!operator) {
+ return compare;
+ }
+
+ // Important: operator is CASE-SENSITIVE.
+ // "No operator" seems to be treated as "<."
+ // Any other values seem to make the function return null.
+ switch (operator) {
+ case '>':
+ case 'gt':
+ return compare > 0;
+ case '>=':
+ case 'ge':
+ return compare >= 0;
+ case '<=':
+ case 'le':
+ return compare <= 0;
+ case '===':
+ case '=':
+ case 'eq':
+ return compare === 0;
+ case '<>':
+ case '!==':
+ case 'ne':
+ return compare !== 0;
+ case '':
+ case '<':
+ case 'lt':
+ return compare < 0;
+ default:
+ return null;
+ }
+};
+//# sourceMappingURL=version_compare.js.map \ No newline at end of file
diff --git a/node_modules/locutus/php/info/version_compare.js.map b/node_modules/locutus/php/info/version_compare.js.map
new file mode 100644
index 0000000..7399852
--- /dev/null
+++ b/node_modules/locutus/php/info/version_compare.js.map
@@ -0,0 +1 @@
+{"version":3,"sources":["../../../src/php/info/version_compare.js"],"names":["module","exports","version_compare","v1","v2","operator","i","x","compare","vm","_prepVersion","v","replace","length","split","_numVersion","isNaN","parseInt","Math","max"],"mappings":";;AAAAA,OAAOC,OAAP,GAAiB,SAASC,eAAT,CAA0BC,EAA1B,EAA8BC,EAA9B,EAAkCC,QAAlC,EAA4C;AAAE;AAC7D;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA,MAAIC,CAAJ;AACA,MAAIC,CAAJ;AACA,MAAIC,UAAU,CAAd;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,MAAIC,KAAK;AACP,WAAO,CAAC,CADD;AAEP,aAAS,CAAC,CAFH;AAGP,SAAK,CAAC,CAHC;AAIP,YAAQ,CAAC,CAJF;AAKP,SAAK,CAAC,CALC;AAMP,UAAM,CAAC,CANA;AAOP,UAAM,CAAC,CAPA;AAQP,SAAK,CAAC,CARC;AASP,SAAK,CATE;AAUP,UAAM;AAVC,GAAT;;AAaA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,MAAIC,eAAe,SAAfA,YAAe,CAAUC,CAAV,EAAa;AAC9BA,QAAI,CAAC,KAAKA,CAAN,EAASC,OAAT,CAAiB,SAAjB,EAA4B,GAA5B,CAAJ;AACAD,QAAIA,EAAEC,OAAF,CAAU,YAAV,EAAwB,MAAxB,EAAgCA,OAAhC,CAAwC,SAAxC,EAAmD,GAAnD,CAAJ;AACA,WAAQ,CAACD,EAAEE,MAAH,GAAY,CAAC,CAAC,CAAF,CAAZ,GAAmBF,EAAEG,KAAF,CAAQ,GAAR,CAA3B;AACD,GAJD;AAKA;AACA;AACA;AACA;AACA,MAAIC,cAAc,SAAdA,WAAc,CAAUJ,CAAV,EAAa;AAC7B,WAAO,CAACA,CAAD,GAAK,CAAL,GAAUK,MAAML,CAAN,IAAWF,GAAGE,CAAH,KAAS,CAAC,CAArB,GAAyBM,SAASN,CAAT,EAAY,EAAZ,CAA1C;AACD,GAFD;;AAIAR,OAAKO,aAAaP,EAAb,CAAL;AACAC,OAAKM,aAAaN,EAAb,CAAL;AACAG,MAAIW,KAAKC,GAAL,CAAShB,GAAGU,MAAZ,EAAoBT,GAAGS,MAAvB,CAAJ;AACA,OAAKP,IAAI,CAAT,EAAYA,IAAIC,CAAhB,EAAmBD,GAAnB,EAAwB;AACtB,QAAIH,GAAGG,CAAH,MAAUF,GAAGE,CAAH,CAAd,EAAqB;AACnB;AACD;AACDH,OAAGG,CAAH,IAAQS,YAAYZ,GAAGG,CAAH,CAAZ,CAAR;AACAF,OAAGE,CAAH,IAAQS,YAAYX,GAAGE,CAAH,CAAZ,CAAR;AACA,QAAIH,GAAGG,CAAH,IAAQF,GAAGE,CAAH,CAAZ,EAAmB;AACjBE,gBAAU,CAAC,CAAX;AACA;AACD,KAHD,MAGO,IAAIL,GAAGG,CAAH,IAAQF,GAAGE,CAAH,CAAZ,EAAmB;AACxBE,gBAAU,CAAV;AACA;AACD;AACF;AACD,MAAI,CAACH,QAAL,EAAe;AACb,WAAOG,OAAP;AACD;;AAED;AACA;AACA;AACA,UAAQH,QAAR;AACE,SAAK,GAAL;AACA,SAAK,IAAL;AACE,aAAQG,UAAU,CAAlB;AACF,SAAK,IAAL;AACA,SAAK,IAAL;AACE,aAAQA,WAAW,CAAnB;AACF,SAAK,IAAL;AACA,SAAK,IAAL;AACE,aAAQA,WAAW,CAAnB;AACF,SAAK,KAAL;AACA,SAAK,GAAL;AACA,SAAK,IAAL;AACE,aAAQA,YAAY,CAApB;AACF,SAAK,IAAL;AACA,SAAK,KAAL;AACA,SAAK,IAAL;AACE,aAAQA,YAAY,CAApB;AACF,SAAK,EAAL;AACA,SAAK,GAAL;AACA,SAAK,IAAL;AACE,aAAQA,UAAU,CAAlB;AACF;AACE,aAAO,IAAP;AAvBJ;AAyBD,CAjHD","file":"version_compare.js","sourcesContent":["module.exports = function version_compare (v1, v2, operator) { // eslint-disable-line camelcase\n // discuss at: http://locutus.io/php/version_compare/\n // original by: Philippe Jausions (http://pear.php.net/user/jausions)\n // original by: Aidan Lister (http://aidanlister.com/)\n // reimplemented by: Kankrelune (http://www.webfaktory.info/)\n // improved by: Brett Zamir (http://brett-zamir.me)\n // improved by: Scott Baker\n // improved by: Theriault (https://github.com/Theriault)\n // example 1: version_compare('8.2.5rc', '8.2.5a')\n // returns 1: 1\n // example 2: version_compare('8.2.50', '8.2.52', '<')\n // returns 2: true\n // example 3: version_compare('5.3.0-dev', '5.3.0')\n // returns 3: -1\n // example 4: version_compare('4.1.0.52','4.01.0.51')\n // returns 4: 1\n\n // Important: compare must be initialized at 0.\n var i\n var x\n var compare = 0\n\n // vm maps textual PHP versions to negatives so they're less than 0.\n // PHP currently defines these as CASE-SENSITIVE. It is important to\n // leave these as negatives so that they can come before numerical versions\n // and as if no letters were there to begin with.\n // (1alpha is < 1 and < 1.1 but > 1dev1)\n // If a non-numerical value can't be mapped to this table, it receives\n // -7 as its value.\n var vm = {\n 'dev': -6,\n 'alpha': -5,\n 'a': -5,\n 'beta': -4,\n 'b': -4,\n 'RC': -3,\n 'rc': -3,\n '#': -2,\n 'p': 1,\n 'pl': 1\n }\n\n // This function will be called to prepare each version argument.\n // It replaces every _, -, and + with a dot.\n // It surrounds any nonsequence of numbers/dots with dots.\n // It replaces sequences of dots with a single dot.\n // version_compare('4..0', '4.0') === 0\n // Important: A string of 0 length needs to be converted into a value\n // even less than an unexisting value in vm (-7), hence [-8].\n // It's also important to not strip spaces because of this.\n // version_compare('', ' ') === 1\n var _prepVersion = function (v) {\n v = ('' + v).replace(/[_\\-+]/g, '.')\n v = v.replace(/([^.\\d]+)/g, '.$1.').replace(/\\.{2,}/g, '.')\n return (!v.length ? [-8] : v.split('.'))\n }\n // This converts a version component to a number.\n // Empty component becomes 0.\n // Non-numerical component becomes a negative number.\n // Numerical component becomes itself as an integer.\n var _numVersion = function (v) {\n return !v ? 0 : (isNaN(v) ? vm[v] || -7 : parseInt(v, 10))\n }\n\n v1 = _prepVersion(v1)\n v2 = _prepVersion(v2)\n x = Math.max(v1.length, v2.length)\n for (i = 0; i < x; i++) {\n if (v1[i] === v2[i]) {\n continue\n }\n v1[i] = _numVersion(v1[i])\n v2[i] = _numVersion(v2[i])\n if (v1[i] < v2[i]) {\n compare = -1\n break\n } else if (v1[i] > v2[i]) {\n compare = 1\n break\n }\n }\n if (!operator) {\n return compare\n }\n\n // Important: operator is CASE-SENSITIVE.\n // \"No operator\" seems to be treated as \"<.\"\n // Any other values seem to make the function return null.\n switch (operator) {\n case '>':\n case 'gt':\n return (compare > 0)\n case '>=':\n case 'ge':\n return (compare >= 0)\n case '<=':\n case 'le':\n return (compare <= 0)\n case '===':\n case '=':\n case 'eq':\n return (compare === 0)\n case '<>':\n case '!==':\n case 'ne':\n return (compare !== 0)\n case '':\n case '<':\n case 'lt':\n return (compare < 0)\n default:\n return null\n }\n}\n"]} \ No newline at end of file