diff options
Diffstat (limited to 'node_modules/locutus/php/json')
-rw-r--r-- | node_modules/locutus/php/json/index.js | 6 | ||||
-rw-r--r-- | node_modules/locutus/php/json/index.js.map | 1 | ||||
-rw-r--r-- | node_modules/locutus/php/json/json_decode.js | 88 | ||||
-rw-r--r-- | node_modules/locutus/php/json/json_decode.js.map | 1 | ||||
-rw-r--r-- | node_modules/locutus/php/json/json_encode.js | 166 | ||||
-rw-r--r-- | node_modules/locutus/php/json/json_encode.js.map | 1 | ||||
-rw-r--r-- | node_modules/locutus/php/json/json_last_error.js | 27 | ||||
-rw-r--r-- | node_modules/locutus/php/json/json_last_error.js.map | 1 |
8 files changed, 0 insertions, 291 deletions
diff --git a/node_modules/locutus/php/json/index.js b/node_modules/locutus/php/json/index.js deleted file mode 100644 index b764546..0000000 --- a/node_modules/locutus/php/json/index.js +++ /dev/null @@ -1,6 +0,0 @@ -'use strict'; - -module.exports['json_decode'] = require('./json_decode'); -module.exports['json_encode'] = require('./json_encode'); -module.exports['json_last_error'] = require('./json_last_error'); -//# sourceMappingURL=index.js.map
\ No newline at end of file diff --git a/node_modules/locutus/php/json/index.js.map b/node_modules/locutus/php/json/index.js.map deleted file mode 100644 index ff5466c..0000000 --- a/node_modules/locutus/php/json/index.js.map +++ /dev/null @@ -1 +0,0 @@ -{"version":3,"sources":["../../../src/php/json/index.js"],"names":["module","exports","require"],"mappings":";;AAAAA,OAAOC,OAAP,CAAe,aAAf,IAAgCC,QAAQ,eAAR,CAAhC;AACAF,OAAOC,OAAP,CAAe,aAAf,IAAgCC,QAAQ,eAAR,CAAhC;AACAF,OAAOC,OAAP,CAAe,iBAAf,IAAoCC,QAAQ,mBAAR,CAApC","file":"index.js","sourcesContent":["module.exports['json_decode'] = require('./json_decode')\nmodule.exports['json_encode'] = require('./json_encode')\nmodule.exports['json_last_error'] = require('./json_last_error')\n"]}
\ No newline at end of file diff --git a/node_modules/locutus/php/json/json_decode.js b/node_modules/locutus/php/json/json_decode.js deleted file mode 100644 index f372089..0000000 --- a/node_modules/locutus/php/json/json_decode.js +++ /dev/null @@ -1,88 +0,0 @@ -'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 json_decode(strJson) { - // eslint-disable-line camelcase - // discuss at: http://phpjs.org/functions/json_decode/ - // original by: Public Domain (http://www.json.org/json2.js) - // reimplemented by: Kevin van Zonneveld (http://kevin.vanzonneveld.net) - // improved by: T.J. Leahy - // improved by: Michael White - // note 1: If node or the browser does not offer JSON.parse, - // note 1: this function falls backslash - // note 1: to its own implementation using eval, and hence should be considered unsafe - // example 1: json_decode('[ 1 ]') - // returns 1: [1] - - /* - http://www.JSON.org/json2.js - 2008-11-19 - Public Domain. - NO WARRANTY EXPRESSED OR IMPLIED. USE AT YOUR OWN RISK. - See http://www.JSON.org/js.html - */ - - var $global = typeof window !== 'undefined' ? window : global; - $global.$locutus = $global.$locutus || {}; - var $locutus = $global.$locutus; - $locutus.php = $locutus.php || {}; - - var json = $global.JSON; - if ((typeof json === 'undefined' ? 'undefined' : _typeof(json)) === 'object' && typeof json.parse === 'function') { - try { - return json.parse(strJson); - } catch (err) { - if (!(err instanceof SyntaxError)) { - throw new Error('Unexpected error type in json_decode()'); - } - - // usable by json_last_error() - $locutus.php.last_error_json = 4; - return null; - } - } - - var chars = ['\0', '\xAD', '\u0600-\u0604', '\u070F', '\u17B4', '\u17B5', '\u200C-\u200F', '\u2028-\u202F', '\u2060-\u206F', '\uFEFF', '\uFFF0-\uFFFF'].join(''); - var cx = new RegExp('[' + chars + ']', 'g'); - var j; - var text = strJson; - - // Parsing happens in four stages. In the first stage, we replace certain - // Unicode characters with escape sequences. JavaScript handles many characters - // incorrectly, either silently deleting them, or treating them as line endings. - cx.lastIndex = 0; - if (cx.test(text)) { - text = text.replace(cx, function (a) { - return '\\u' + ('0000' + a.charCodeAt(0).toString(16)).slice(-4); - }); - } - - // In the second stage, we run the text against regular expressions that look - // for non-JSON patterns. We are especially concerned with '()' and 'new' - // because they can cause invocation, and '=' because it can cause mutation. - // But just to be safe, we want to reject all unexpected forms. - // We split the second stage into 4 regexp operations in order to work around - // crippling inefficiencies in IE's and Safari's regexp engines. First we - // replace the JSON backslash pairs with '@' (a non-JSON character). Second, we - // replace all simple value tokens with ']' characters. Third, we delete all - // open brackets that follow a colon or comma or that begin the text. Finally, - // we look to see that the remaining characters are only whitespace or ']' or - // ',' or ':' or '{' or '}'. If that is so, then the text is safe for eval. - - var m = /^[\],:{}\s]*$/.test(text.replace(/\\(?:["\\/bfnrt]|u[0-9a-fA-F]{4})/g, '@').replace(/"[^"\\\n\r]*"|true|false|null|-?\d+(?:\.\d*)?(?:[eE][+-]?\d+)?/g, ']').replace(/(?:^|:|,)(?:\s*\[)+/g, '')); - - if (m) { - // In the third stage we use the eval function to compile the text into a - // JavaScript structure. The '{' operator is subject to a syntactic ambiguity - // in JavaScript: it can begin a block or an object literal. We wrap the text - // in parens to eliminate the ambiguity. - j = eval('(' + text + ')'); // eslint-disable-line no-eval - return j; - } - - // usable by json_last_error() - $locutus.php.last_error_json = 4; - return null; -}; -//# sourceMappingURL=json_decode.js.map
\ No newline at end of file diff --git a/node_modules/locutus/php/json/json_decode.js.map b/node_modules/locutus/php/json/json_decode.js.map deleted file mode 100644 index ded6b7d..0000000 --- a/node_modules/locutus/php/json/json_decode.js.map +++ /dev/null @@ -1 +0,0 @@ -{"version":3,"sources":["../../../src/php/json/json_decode.js"],"names":["module","exports","json_decode","strJson","$global","window","global","$locutus","php","json","JSON","parse","err","SyntaxError","Error","last_error_json","chars","join","cx","RegExp","j","text","lastIndex","test","replace","a","charCodeAt","toString","slice","m","eval"],"mappings":";;;;AAAAA,OAAOC,OAAP,GAAiB,SAASC,WAAT,CAAsBC,OAAtB,EAA+B;AAAE;AAChD;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;;;;;;;;AAQA,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;;AAEA,MAAIC,OAAOL,QAAQM,IAAnB;AACA,MAAI,QAAOD,IAAP,yCAAOA,IAAP,OAAgB,QAAhB,IAA4B,OAAOA,KAAKE,KAAZ,KAAsB,UAAtD,EAAkE;AAChE,QAAI;AACF,aAAOF,KAAKE,KAAL,CAAWR,OAAX,CAAP;AACD,KAFD,CAEE,OAAOS,GAAP,EAAY;AACZ,UAAI,EAAEA,eAAeC,WAAjB,CAAJ,EAAmC;AACjC,cAAM,IAAIC,KAAJ,CAAU,wCAAV,CAAN;AACD;;AAED;AACAP,eAASC,GAAT,CAAaO,eAAb,GAA+B,CAA/B;AACA,aAAO,IAAP;AACD;AACF;;AAED,MAAIC,QAAQ,CACV,IADU,EAEV,MAFU,EAGV,eAHU,EAIV,QAJU,EAKV,QALU,EAMV,QANU,EAOV,eAPU,EAQV,eARU,EASV,eATU,EAUV,QAVU,EAWV,eAXU,EAYVC,IAZU,CAYL,EAZK,CAAZ;AAaA,MAAIC,KAAK,IAAIC,MAAJ,CAAW,MAAMH,KAAN,GAAc,GAAzB,EAA8B,GAA9B,CAAT;AACA,MAAII,CAAJ;AACA,MAAIC,OAAOlB,OAAX;;AAEA;AACA;AACA;AACAe,KAAGI,SAAH,GAAe,CAAf;AACA,MAAIJ,GAAGK,IAAH,CAAQF,IAAR,CAAJ,EAAmB;AACjBA,WAAOA,KAAKG,OAAL,CAAaN,EAAb,EAAiB,UAAUO,CAAV,EAAa;AACnC,aAAO,QAAQ,CAAC,SAASA,EAAEC,UAAF,CAAa,CAAb,EACtBC,QADsB,CACb,EADa,CAAV,EAEZC,KAFY,CAEN,CAAC,CAFK,CAAf;AAGD,KAJM,CAAP;AAKD;;AAED;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA,MAAIC,IAAK,eAAD,CACLN,IADK,CACAF,KAAKG,OAAL,CAAa,oCAAb,EAAmD,GAAnD,EACLA,OADK,CACG,iEADH,EACsE,GADtE,EAELA,OAFK,CAEG,sBAFH,EAE2B,EAF3B,CADA,CAAR;;AAKA,MAAIK,CAAJ,EAAO;AACL;AACA;AACA;AACA;AACAT,QAAIU,KAAK,MAAMT,IAAN,GAAa,GAAlB,CAAJ,CALK,CAKsB;AAC3B,WAAOD,CAAP;AACD;;AAED;AACAb,WAASC,GAAT,CAAaO,eAAb,GAA+B,CAA/B;AACA,SAAO,IAAP;AACD,CAlGD","file":"json_decode.js","sourcesContent":["module.exports = function json_decode (strJson) { // eslint-disable-line camelcase\n // discuss at: http://phpjs.org/functions/json_decode/\n // original by: Public Domain (http://www.json.org/json2.js)\n // reimplemented by: Kevin van Zonneveld (http://kevin.vanzonneveld.net)\n // improved by: T.J. Leahy\n // improved by: Michael White\n // note 1: If node or the browser does not offer JSON.parse,\n // note 1: this function falls backslash\n // note 1: to its own implementation using eval, and hence should be considered unsafe\n // example 1: json_decode('[ 1 ]')\n // returns 1: [1]\n\n /*\n http://www.JSON.org/json2.js\n 2008-11-19\n Public Domain.\n NO WARRANTY EXPRESSED OR IMPLIED. USE AT YOUR OWN RISK.\n See http://www.JSON.org/js.html\n */\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 var json = $global.JSON\n if (typeof json === 'object' && typeof json.parse === 'function') {\n try {\n return json.parse(strJson)\n } catch (err) {\n if (!(err instanceof SyntaxError)) {\n throw new Error('Unexpected error type in json_decode()')\n }\n\n // usable by json_last_error()\n $locutus.php.last_error_json = 4\n return null\n }\n }\n\n var chars = [\n '\\u0000',\n '\\u00ad',\n '\\u0600-\\u0604',\n '\\u070f',\n '\\u17b4',\n '\\u17b5',\n '\\u200c-\\u200f',\n '\\u2028-\\u202f',\n '\\u2060-\\u206f',\n '\\ufeff',\n '\\ufff0-\\uffff'\n ].join('')\n var cx = new RegExp('[' + chars + ']', 'g')\n var j\n var text = strJson\n\n // Parsing happens in four stages. In the first stage, we replace certain\n // Unicode characters with escape sequences. JavaScript handles many characters\n // incorrectly, either silently deleting them, or treating them as line endings.\n cx.lastIndex = 0\n if (cx.test(text)) {\n text = text.replace(cx, function (a) {\n return '\\\\u' + ('0000' + a.charCodeAt(0)\n .toString(16))\n .slice(-4)\n })\n }\n\n // In the second stage, we run the text against regular expressions that look\n // for non-JSON patterns. We are especially concerned with '()' and 'new'\n // because they can cause invocation, and '=' because it can cause mutation.\n // But just to be safe, we want to reject all unexpected forms.\n // We split the second stage into 4 regexp operations in order to work around\n // crippling inefficiencies in IE's and Safari's regexp engines. First we\n // replace the JSON backslash pairs with '@' (a non-JSON character). Second, we\n // replace all simple value tokens with ']' characters. Third, we delete all\n // open brackets that follow a colon or comma or that begin the text. Finally,\n // we look to see that the remaining characters are only whitespace or ']' or\n // ',' or ':' or '{' or '}'. If that is so, then the text is safe for eval.\n\n var m = (/^[\\],:{}\\s]*$/)\n .test(text.replace(/\\\\(?:[\"\\\\/bfnrt]|u[0-9a-fA-F]{4})/g, '@')\n .replace(/\"[^\"\\\\\\n\\r]*\"|true|false|null|-?\\d+(?:\\.\\d*)?(?:[eE][+-]?\\d+)?/g, ']')\n .replace(/(?:^|:|,)(?:\\s*\\[)+/g, ''))\n\n if (m) {\n // In the third stage we use the eval function to compile the text into a\n // JavaScript structure. The '{' operator is subject to a syntactic ambiguity\n // in JavaScript: it can begin a block or an object literal. We wrap the text\n // in parens to eliminate the ambiguity.\n j = eval('(' + text + ')') // eslint-disable-line no-eval\n return j\n }\n\n // usable by json_last_error()\n $locutus.php.last_error_json = 4\n return null\n}\n"]}
\ No newline at end of file diff --git a/node_modules/locutus/php/json/json_encode.js b/node_modules/locutus/php/json/json_encode.js deleted file mode 100644 index c21ffbf..0000000 --- a/node_modules/locutus/php/json/json_encode.js +++ /dev/null @@ -1,166 +0,0 @@ -'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 json_encode(mixedVal) { - // eslint-disable-line camelcase - // discuss at: http://phpjs.org/functions/json_encode/ - // original by: Public Domain (http://www.json.org/json2.js) - // reimplemented by: Kevin van Zonneveld (http://kevin.vanzonneveld.net) - // improved by: Michael White - // input by: felix - // bugfixed by: Brett Zamir (http://brett-zamir.me) - // example 1: json_encode('Kevin') - // returns 1: '"Kevin"' - - /* - http://www.JSON.org/json2.js - 2008-11-19 - Public Domain. - NO WARRANTY EXPRESSED OR IMPLIED. USE AT YOUR OWN RISK. - See http://www.JSON.org/js.html - */ - - var $global = typeof window !== 'undefined' ? window : global; - $global.$locutus = $global.$locutus || {}; - var $locutus = $global.$locutus; - $locutus.php = $locutus.php || {}; - - var json = $global.JSON; - var retVal; - try { - if ((typeof json === 'undefined' ? 'undefined' : _typeof(json)) === 'object' && typeof json.stringify === 'function') { - // Errors will not be caught here if our own equivalent to resource - retVal = json.stringify(mixedVal); - if (retVal === undefined) { - throw new SyntaxError('json_encode'); - } - return retVal; - } - - var value = mixedVal; - - var quote = function quote(string) { - var escapeChars = ['\0-\x1F', '\x7F-\x9F', '\xAD', '\u0600-\u0604', '\u070F', '\u17B4', '\u17B5', '\u200C-\u200F', '\u2028-\u202F', '\u2060-\u206F', '\uFEFF', '\uFFF0-\uFFFF'].join(''); - var escapable = new RegExp('[\\"' + escapeChars + ']', 'g'); - var meta = { - // table of character substitutions - '\b': '\\b', - '\t': '\\t', - '\n': '\\n', - '\f': '\\f', - '\r': '\\r', - '"': '\\"', - '\\': '\\\\' - }; - - escapable.lastIndex = 0; - return escapable.test(string) ? '"' + string.replace(escapable, function (a) { - var c = meta[a]; - return typeof c === 'string' ? c : '\\u' + ('0000' + a.charCodeAt(0).toString(16)).slice(-4); - }) + '"' : '"' + string + '"'; - }; - - var _str = function _str(key, holder) { - var gap = ''; - var indent = ' '; - // The loop counter. - var i = 0; - // The member key. - var k = ''; - // The member value. - var v = ''; - var length = 0; - var mind = gap; - var partial = []; - var value = holder[key]; - - // If the value has a toJSON method, call it to obtain a replacement value. - if (value && (typeof value === 'undefined' ? 'undefined' : _typeof(value)) === 'object' && typeof value.toJSON === 'function') { - value = value.toJSON(key); - } - - // What happens next depends on the value's type. - switch (typeof value === 'undefined' ? 'undefined' : _typeof(value)) { - case 'string': - return quote(value); - - case 'number': - // JSON numbers must be finite. Encode non-finite numbers as null. - return isFinite(value) ? String(value) : 'null'; - - case 'boolean': - case 'null': - // If the value is a boolean or null, convert it to a string. Note: - // typeof null does not produce 'null'. The case is included here in - // the remote chance that this gets fixed someday. - return String(value); - - case 'object': - // If the type is 'object', we might be dealing with an object or an array or - // null. - // Due to a specification blunder in ECMAScript, typeof null is 'object', - // so watch out for that case. - if (!value) { - return 'null'; - } - - // Make an array to hold the partial results of stringifying this object value. - gap += indent; - partial = []; - - // Is the value an array? - if (Object.prototype.toString.apply(value) === '[object Array]') { - // The value is an array. Stringify every element. Use null as a placeholder - // for non-JSON values. - length = value.length; - for (i = 0; i < length; i += 1) { - partial[i] = _str(i, value) || 'null'; - } - - // Join all of the elements together, separated with commas, and wrap them in - // brackets. - v = partial.length === 0 ? '[]' : gap ? '[\n' + gap + partial.join(',\n' + gap) + '\n' + mind + ']' : '[' + partial.join(',') + ']'; - gap = mind; - return v; - } - - // Iterate through all of the keys in the object. - for (k in value) { - if (Object.hasOwnProperty.call(value, k)) { - v = _str(k, value); - if (v) { - partial.push(quote(k) + (gap ? ': ' : ':') + v); - } - } - } - - // Join all of the member texts together, separated with commas, - // and wrap them in braces. - v = partial.length === 0 ? '{}' : gap ? '{\n' + gap + partial.join(',\n' + gap) + '\n' + mind + '}' : '{' + partial.join(',') + '}'; - gap = mind; - return v; - case 'undefined': - case 'function': - default: - throw new SyntaxError('json_encode'); - } - }; - - // Make a fake root object containing our value under the key of ''. - // Return the result of stringifying the value. - return _str('', { - '': value - }); - } catch (err) { - // @todo: ensure error handling above throws a SyntaxError in all cases where it could - // (i.e., when the JSON global is not available and there is an error) - if (!(err instanceof SyntaxError)) { - throw new Error('Unexpected error type in json_encode()'); - } - // usable by json_last_error() - $locutus.php.last_error_json = 4; - return null; - } -}; -//# sourceMappingURL=json_encode.js.map
\ No newline at end of file diff --git a/node_modules/locutus/php/json/json_encode.js.map b/node_modules/locutus/php/json/json_encode.js.map deleted file mode 100644 index db4a2a7..0000000 --- a/node_modules/locutus/php/json/json_encode.js.map +++ /dev/null @@ -1 +0,0 @@ -{"version":3,"sources":["../../../src/php/json/json_encode.js"],"names":["module","exports","json_encode","mixedVal","$global","window","global","$locutus","php","json","JSON","retVal","stringify","undefined","SyntaxError","value","quote","string","escapeChars","join","escapable","RegExp","meta","lastIndex","test","replace","a","c","charCodeAt","toString","slice","_str","key","holder","gap","indent","i","k","v","length","mind","partial","toJSON","isFinite","String","Object","prototype","apply","hasOwnProperty","call","push","err","Error","last_error_json"],"mappings":"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","file":"json_encode.js","sourcesContent":["module.exports = function json_encode (mixedVal) { // eslint-disable-line camelcase\n // discuss at: http://phpjs.org/functions/json_encode/\n // original by: Public Domain (http://www.json.org/json2.js)\n // reimplemented by: Kevin van Zonneveld (http://kevin.vanzonneveld.net)\n // improved by: Michael White\n // input by: felix\n // bugfixed by: Brett Zamir (http://brett-zamir.me)\n // example 1: json_encode('Kevin')\n // returns 1: '\"Kevin\"'\n\n /*\n http://www.JSON.org/json2.js\n 2008-11-19\n Public Domain.\n NO WARRANTY EXPRESSED OR IMPLIED. USE AT YOUR OWN RISK.\n See http://www.JSON.org/js.html\n */\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 var json = $global.JSON\n var retVal\n try {\n if (typeof json === 'object' && typeof json.stringify === 'function') {\n // Errors will not be caught here if our own equivalent to resource\n retVal = json.stringify(mixedVal)\n if (retVal === undefined) {\n throw new SyntaxError('json_encode')\n }\n return retVal\n }\n\n var value = mixedVal\n\n var quote = function (string) {\n var escapeChars = [\n '\\u0000-\\u001f',\n '\\u007f-\\u009f',\n '\\u00ad',\n '\\u0600-\\u0604',\n '\\u070f',\n '\\u17b4',\n '\\u17b5',\n '\\u200c-\\u200f',\n '\\u2028-\\u202f',\n '\\u2060-\\u206f',\n '\\ufeff',\n '\\ufff0-\\uffff'\n ].join('')\n var escapable = new RegExp('[\\\\\"' + escapeChars + ']', 'g')\n var meta = {\n // table of character substitutions\n '\\b': '\\\\b',\n '\\t': '\\\\t',\n '\\n': '\\\\n',\n '\\f': '\\\\f',\n '\\r': '\\\\r',\n '\"': '\\\\\"',\n '\\\\': '\\\\\\\\'\n }\n\n escapable.lastIndex = 0\n return escapable.test(string) ? '\"' + string.replace(escapable, function (a) {\n var c = meta[a]\n return typeof c === 'string' ? c : '\\\\u' + ('0000' + a.charCodeAt(0)\n .toString(16))\n .slice(-4)\n }) + '\"' : '\"' + string + '\"'\n }\n\n var _str = function (key, holder) {\n var gap = ''\n var indent = ' '\n // The loop counter.\n var i = 0\n // The member key.\n var k = ''\n // The member value.\n var v = ''\n var length = 0\n var mind = gap\n var partial = []\n var value = holder[key]\n\n // If the value has a toJSON method, call it to obtain a replacement value.\n if (value && typeof value === 'object' && typeof value.toJSON === 'function') {\n value = value.toJSON(key)\n }\n\n // What happens next depends on the value's type.\n switch (typeof value) {\n case 'string':\n return quote(value)\n\n case 'number':\n // JSON numbers must be finite. Encode non-finite numbers as null.\n return isFinite(value) ? String(value) : 'null'\n\n case 'boolean':\n case 'null':\n // If the value is a boolean or null, convert it to a string. Note:\n // typeof null does not produce 'null'. The case is included here in\n // the remote chance that this gets fixed someday.\n return String(value)\n\n case 'object':\n // If the type is 'object', we might be dealing with an object or an array or\n // null.\n // Due to a specification blunder in ECMAScript, typeof null is 'object',\n // so watch out for that case.\n if (!value) {\n return 'null'\n }\n\n // Make an array to hold the partial results of stringifying this object value.\n gap += indent\n partial = []\n\n // Is the value an array?\n if (Object.prototype.toString.apply(value) === '[object Array]') {\n // The value is an array. Stringify every element. Use null as a placeholder\n // for non-JSON values.\n length = value.length\n for (i = 0; i < length; i += 1) {\n partial[i] = _str(i, value) || 'null'\n }\n\n // Join all of the elements together, separated with commas, and wrap them in\n // brackets.\n v = partial.length === 0 ? '[]' : gap\n ? '[\\n' + gap + partial.join(',\\n' + gap) + '\\n' + mind + ']'\n : '[' + partial.join(',') + ']'\n gap = mind\n return v\n }\n\n // Iterate through all of the keys in the object.\n for (k in value) {\n if (Object.hasOwnProperty.call(value, k)) {\n v = _str(k, value)\n if (v) {\n partial.push(quote(k) + (gap ? ': ' : ':') + v)\n }\n }\n }\n\n // Join all of the member texts together, separated with commas,\n // and wrap them in braces.\n v = partial.length === 0 ? '{}' : gap\n ? '{\\n' + gap + partial.join(',\\n' + gap) + '\\n' + mind + '}'\n : '{' + partial.join(',') + '}'\n gap = mind\n return v\n case 'undefined':\n case 'function':\n default:\n throw new SyntaxError('json_encode')\n }\n }\n\n // Make a fake root object containing our value under the key of ''.\n // Return the result of stringifying the value.\n return _str('', {\n '': value\n })\n } catch (err) {\n // @todo: ensure error handling above throws a SyntaxError in all cases where it could\n // (i.e., when the JSON global is not available and there is an error)\n if (!(err instanceof SyntaxError)) {\n throw new Error('Unexpected error type in json_encode()')\n }\n // usable by json_last_error()\n $locutus.php.last_error_json = 4\n return null\n }\n}\n"]}
\ No newline at end of file diff --git a/node_modules/locutus/php/json/json_last_error.js b/node_modules/locutus/php/json/json_last_error.js deleted file mode 100644 index a8c27d4..0000000 --- a/node_modules/locutus/php/json/json_last_error.js +++ /dev/null @@ -1,27 +0,0 @@ -'use strict'; - -module.exports = function json_last_error() { - // eslint-disable-line camelcase - // discuss at: http://phpjs.org/functions/json_last_error/ - // original by: Brett Zamir (http://brett-zamir.me) - // example 1: json_last_error() - // returns 1: 0 - - // JSON_ERROR_NONE = 0 - // max depth limit to be removed per PHP comments in json.c (not possible in JS?): - // JSON_ERROR_DEPTH = 1 - // internal use? also not documented: - // JSON_ERROR_STATE_MISMATCH = 2 - // [\u0000-\u0008\u000B-\u000C\u000E-\u001F] if used directly within json_decode(): - // JSON_ERROR_CTRL_CHAR = 3 - // but JSON functions auto-escape these, so error not possible in JavaScript - // JSON_ERROR_SYNTAX = 4 - - var $global = typeof window !== 'undefined' ? window : global; - $global.$locutus = $global.$locutus || {}; - var $locutus = $global.$locutus; - $locutus.php = $locutus.php || {}; - - return $locutus.php && $locutus.php.last_error_json ? $locutus.php.last_error_json : 0; -}; -//# sourceMappingURL=json_last_error.js.map
\ No newline at end of file diff --git a/node_modules/locutus/php/json/json_last_error.js.map b/node_modules/locutus/php/json/json_last_error.js.map deleted file mode 100644 index 9a929a8..0000000 --- a/node_modules/locutus/php/json/json_last_error.js.map +++ /dev/null @@ -1 +0,0 @@ -{"version":3,"sources":["../../../src/php/json/json_last_error.js"],"names":["module","exports","json_last_error","$global","window","global","$locutus","php","last_error_json"],"mappings":";;AAAAA,OAAOC,OAAP,GAAiB,SAASC,eAAT,GAA4B;AAAE;AAC7C;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;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;;AAEA,SAAOD,SAASC,GAAT,IAAgBD,SAASC,GAAT,CAAaC,eAA7B,GAA+CF,SAASC,GAAT,CAAaC,eAA5D,GAA8E,CAArF;AACD,CAtBD","file":"json_last_error.js","sourcesContent":["module.exports = function json_last_error () { // eslint-disable-line camelcase\n // discuss at: http://phpjs.org/functions/json_last_error/\n // original by: Brett Zamir (http://brett-zamir.me)\n // example 1: json_last_error()\n // returns 1: 0\n\n // JSON_ERROR_NONE = 0\n // max depth limit to be removed per PHP comments in json.c (not possible in JS?):\n // JSON_ERROR_DEPTH = 1\n // internal use? also not documented:\n // JSON_ERROR_STATE_MISMATCH = 2\n // [\\u0000-\\u0008\\u000B-\\u000C\\u000E-\\u001F] if used directly within json_decode():\n // JSON_ERROR_CTRL_CHAR = 3\n // but JSON functions auto-escape these, so error not possible in JavaScript\n // JSON_ERROR_SYNTAX = 4\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 return $locutus.php && $locutus.php.last_error_json ? $locutus.php.last_error_json : 0\n}\n"]}
\ No newline at end of file |