diff options
Diffstat (limited to 'node_modules/locutus/php/funchand')
12 files changed, 189 insertions, 0 deletions
diff --git a/node_modules/locutus/php/funchand/call_user_func.js b/node_modules/locutus/php/funchand/call_user_func.js new file mode 100644 index 0000000..841ec42 --- /dev/null +++ b/node_modules/locutus/php/funchand/call_user_func.js @@ -0,0 +1,21 @@ +'use strict'; + +module.exports = function call_user_func(cb, parameters) { + // eslint-disable-line camelcase + // discuss at: http://locutus.io/php/call_user_func/ + // original by: Brett Zamir (http://brett-zamir.me) + // improved by: Diplom@t (http://difane.com/) + // improved by: Brett Zamir (http://brett-zamir.me) + // note 1: Depends on call_user_func_array which in turn depends on the `cb` that is passed, + // note 1: this function can use `eval`. + // note 1: The `eval` input is however checked to only allow valid function names, + // note 1: So it should not be unsafer than uses without eval (seeing as you can) + // note 1: already pass any function to be executed here. + // example 1: call_user_func('isNaN', 'a') + // returns 1: true + + var callUserFuncArray = require('../funchand/call_user_func_array'); + parameters = Array.prototype.slice.call(arguments, 1); + return callUserFuncArray(cb, parameters); +}; +//# sourceMappingURL=call_user_func.js.map
\ No newline at end of file diff --git a/node_modules/locutus/php/funchand/call_user_func.js.map b/node_modules/locutus/php/funchand/call_user_func.js.map new file mode 100644 index 0000000..c1876cb --- /dev/null +++ b/node_modules/locutus/php/funchand/call_user_func.js.map @@ -0,0 +1 @@ +{"version":3,"sources":["../../../src/php/funchand/call_user_func.js"],"names":["module","exports","call_user_func","cb","parameters","callUserFuncArray","require","Array","prototype","slice","call","arguments"],"mappings":";;AAAAA,OAAOC,OAAP,GAAiB,SAASC,cAAT,CAAyBC,EAAzB,EAA6BC,UAA7B,EAAyC;AAAE;AAC1D;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA,MAAIC,oBAAoBC,QAAQ,kCAAR,CAAxB;AACAF,eAAaG,MAAMC,SAAN,CAAgBC,KAAhB,CAAsBC,IAAtB,CAA2BC,SAA3B,EAAsC,CAAtC,CAAb;AACA,SAAON,kBAAkBF,EAAlB,EAAsBC,UAAtB,CAAP;AACD,CAhBD","file":"call_user_func.js","sourcesContent":["module.exports = function call_user_func (cb, parameters) { // eslint-disable-line camelcase\n // discuss at: http://locutus.io/php/call_user_func/\n // original by: Brett Zamir (http://brett-zamir.me)\n // improved by: Diplom@t (http://difane.com/)\n // improved by: Brett Zamir (http://brett-zamir.me)\n // note 1: Depends on call_user_func_array which in turn depends on the `cb` that is passed,\n // note 1: this function can use `eval`.\n // note 1: The `eval` input is however checked to only allow valid function names,\n // note 1: So it should not be unsafer than uses without eval (seeing as you can)\n // note 1: already pass any function to be executed here.\n // example 1: call_user_func('isNaN', 'a')\n // returns 1: true\n\n var callUserFuncArray = require('../funchand/call_user_func_array')\n parameters = Array.prototype.slice.call(arguments, 1)\n return callUserFuncArray(cb, parameters)\n}\n"]}
\ No newline at end of file diff --git a/node_modules/locutus/php/funchand/call_user_func_array.js b/node_modules/locutus/php/funchand/call_user_func_array.js new file mode 100644 index 0000000..91c79b7 --- /dev/null +++ b/node_modules/locutus/php/funchand/call_user_func_array.js @@ -0,0 +1,63 @@ +'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 call_user_func_array(cb, parameters) { + // eslint-disable-line camelcase + // discuss at: http://locutus.io/php/call_user_func_array/ + // original by: Thiago Mata (http://thiagomata.blog.com) + // revised by: Jon Hohle + // improved by: Brett Zamir (http://brett-zamir.me) + // improved by: Diplom@t (http://difane.com/) + // improved by: Brett Zamir (http://brett-zamir.me) + // note 1: Depending on the `cb` that is passed, + // note 1: this function can use `eval` and/or `new Function`. + // note 1: The `eval` input is however checked to only allow valid function names, + // note 1: So it should not be unsafer than uses without eval (seeing as you can) + // note 1: already pass any function to be executed here. + // example 1: call_user_func_array('isNaN', ['a']) + // returns 1: true + // example 2: call_user_func_array('isNaN', [1]) + // returns 2: false + + var $global = typeof window !== 'undefined' ? window : global; + var func; + var scope = null; + + var validJSFunctionNamePattern = /^[_$a-zA-Z\xA0-\uFFFF][_$a-zA-Z0-9\xA0-\uFFFF]*$/; + + if (typeof cb === 'string') { + if (typeof $global[cb] === 'function') { + func = $global[cb]; + } else if (cb.match(validJSFunctionNamePattern)) { + func = new Function(null, 'return ' + cb)(); // eslint-disable-line no-new-func + } + } else if (Object.prototype.toString.call(cb) === '[object Array]') { + if (typeof cb[0] === 'string') { + if (cb[0].match(validJSFunctionNamePattern)) { + func = eval(cb[0] + "['" + cb[1] + "']"); // eslint-disable-line no-eval + } + } else { + func = cb[0][cb[1]]; + } + + if (typeof cb[0] === 'string') { + if (typeof $global[cb[0]] === 'function') { + scope = $global[cb[0]]; + } else if (cb[0].match(validJSFunctionNamePattern)) { + scope = eval(cb[0]); // eslint-disable-line no-eval + } + } else if (_typeof(cb[0]) === 'object') { + scope = cb[0]; + } + } else if (typeof cb === 'function') { + func = cb; + } + + if (typeof func !== 'function') { + throw new Error(func + ' is not a valid function'); + } + + return func.apply(scope, parameters); +}; +//# sourceMappingURL=call_user_func_array.js.map
\ No newline at end of file diff --git a/node_modules/locutus/php/funchand/call_user_func_array.js.map b/node_modules/locutus/php/funchand/call_user_func_array.js.map new file mode 100644 index 0000000..fd5125e --- /dev/null +++ b/node_modules/locutus/php/funchand/call_user_func_array.js.map @@ -0,0 +1 @@ +{"version":3,"sources":["../../../src/php/funchand/call_user_func_array.js"],"names":["module","exports","call_user_func_array","cb","parameters","$global","window","global","func","scope","validJSFunctionNamePattern","match","Function","Object","prototype","toString","call","eval","Error","apply"],"mappings":";;;;AAAAA,OAAOC,OAAP,GAAiB,SAASC,oBAAT,CAA+BC,EAA/B,EAAmCC,UAAnC,EAA+C;AAAE;AAChE;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA,MAAIC,UAAW,OAAOC,MAAP,KAAkB,WAAlB,GAAgCA,MAAhC,GAAyCC,MAAxD;AACA,MAAIC,IAAJ;AACA,MAAIC,QAAQ,IAAZ;;AAEA,MAAIC,6BAA6B,kDAAjC;;AAEA,MAAI,OAAOP,EAAP,KAAc,QAAlB,EAA4B;AAC1B,QAAI,OAAOE,QAAQF,EAAR,CAAP,KAAuB,UAA3B,EAAuC;AACrCK,aAAOH,QAAQF,EAAR,CAAP;AACD,KAFD,MAEO,IAAIA,GAAGQ,KAAH,CAASD,0BAAT,CAAJ,EAA0C;AAC/CF,aAAQ,IAAII,QAAJ,CAAa,IAAb,EAAmB,YAAYT,EAA/B,GAAR,CAD+C,CACD;AAC/C;AACF,GAND,MAMO,IAAIU,OAAOC,SAAP,CAAiBC,QAAjB,CAA0BC,IAA1B,CAA+Bb,EAA/B,MAAuC,gBAA3C,EAA6D;AAClE,QAAI,OAAOA,GAAG,CAAH,CAAP,KAAiB,QAArB,EAA+B;AAC7B,UAAIA,GAAG,CAAH,EAAMQ,KAAN,CAAYD,0BAAZ,CAAJ,EAA6C;AAC3CF,eAAOS,KAAKd,GAAG,CAAH,IAAQ,IAAR,GAAeA,GAAG,CAAH,CAAf,GAAuB,IAA5B,CAAP,CAD2C,CACF;AAC1C;AACF,KAJD,MAIO;AACLK,aAAOL,GAAG,CAAH,EAAMA,GAAG,CAAH,CAAN,CAAP;AACD;;AAED,QAAI,OAAOA,GAAG,CAAH,CAAP,KAAiB,QAArB,EAA+B;AAC7B,UAAI,OAAOE,QAAQF,GAAG,CAAH,CAAR,CAAP,KAA0B,UAA9B,EAA0C;AACxCM,gBAAQJ,QAAQF,GAAG,CAAH,CAAR,CAAR;AACD,OAFD,MAEO,IAAIA,GAAG,CAAH,EAAMQ,KAAN,CAAYD,0BAAZ,CAAJ,EAA6C;AAClDD,gBAAQQ,KAAKd,GAAG,CAAH,CAAL,CAAR,CADkD,CAC9B;AACrB;AACF,KAND,MAMO,IAAI,QAAOA,GAAG,CAAH,CAAP,MAAiB,QAArB,EAA+B;AACpCM,cAAQN,GAAG,CAAH,CAAR;AACD;AACF,GAlBM,MAkBA,IAAI,OAAOA,EAAP,KAAc,UAAlB,EAA8B;AACnCK,WAAOL,EAAP;AACD;;AAED,MAAI,OAAOK,IAAP,KAAgB,UAApB,EAAgC;AAC9B,UAAM,IAAIU,KAAJ,CAAUV,OAAO,0BAAjB,CAAN;AACD;;AAED,SAAOA,KAAKW,KAAL,CAAWV,KAAX,EAAkBL,UAAlB,CAAP;AACD,CAxDD","file":"call_user_func_array.js","sourcesContent":["module.exports = function call_user_func_array (cb, parameters) { // eslint-disable-line camelcase\n // discuss at: http://locutus.io/php/call_user_func_array/\n // original by: Thiago Mata (http://thiagomata.blog.com)\n // revised by: Jon Hohle\n // improved by: Brett Zamir (http://brett-zamir.me)\n // improved by: Diplom@t (http://difane.com/)\n // improved by: Brett Zamir (http://brett-zamir.me)\n // note 1: Depending on the `cb` that is passed,\n // note 1: this function can use `eval` and/or `new Function`.\n // note 1: The `eval` input is however checked to only allow valid function names,\n // note 1: So it should not be unsafer than uses without eval (seeing as you can)\n // note 1: already pass any function to be executed here.\n // example 1: call_user_func_array('isNaN', ['a'])\n // returns 1: true\n // example 2: call_user_func_array('isNaN', [1])\n // returns 2: false\n\n var $global = (typeof window !== 'undefined' ? window : global)\n var func\n var scope = null\n\n var validJSFunctionNamePattern = /^[_$a-zA-Z\\xA0-\\uFFFF][_$a-zA-Z0-9\\xA0-\\uFFFF]*$/\n\n if (typeof cb === 'string') {\n if (typeof $global[cb] === 'function') {\n func = $global[cb]\n } else if (cb.match(validJSFunctionNamePattern)) {\n func = (new Function(null, 'return ' + cb)()) // eslint-disable-line no-new-func\n }\n } else if (Object.prototype.toString.call(cb) === '[object Array]') {\n if (typeof cb[0] === 'string') {\n if (cb[0].match(validJSFunctionNamePattern)) {\n func = eval(cb[0] + \"['\" + cb[1] + \"']\") // eslint-disable-line no-eval\n }\n } else {\n func = cb[0][cb[1]]\n }\n\n if (typeof cb[0] === 'string') {\n if (typeof $global[cb[0]] === 'function') {\n scope = $global[cb[0]]\n } else if (cb[0].match(validJSFunctionNamePattern)) {\n scope = eval(cb[0]) // eslint-disable-line no-eval\n }\n } else if (typeof cb[0] === 'object') {\n scope = cb[0]\n }\n } else if (typeof cb === 'function') {\n func = cb\n }\n\n if (typeof func !== 'function') {\n throw new Error(func + ' is not a valid function')\n }\n\n return func.apply(scope, parameters)\n}\n"]}
\ No newline at end of file diff --git a/node_modules/locutus/php/funchand/create_function.js b/node_modules/locutus/php/funchand/create_function.js new file mode 100644 index 0000000..1d75b5d --- /dev/null +++ b/node_modules/locutus/php/funchand/create_function.js @@ -0,0 +1,18 @@ +'use strict'; + +module.exports = function create_function(args, code) { + // eslint-disable-line camelcase + // discuss at: http://locutus.io/php/create_function/ + // original by: Johnny Mast (http://www.phpvrouwen.nl) + // reimplemented by: Brett Zamir (http://brett-zamir.me) + // example 1: var $f = create_function('a, b', 'return (a + b)') + // example 1: $f(1, 2) + // returns 1: 3 + + try { + return Function.apply(null, args.split(',').concat(code)); + } catch (e) { + return false; + } +}; +//# sourceMappingURL=create_function.js.map
\ No newline at end of file diff --git a/node_modules/locutus/php/funchand/create_function.js.map b/node_modules/locutus/php/funchand/create_function.js.map new file mode 100644 index 0000000..0b447a5 --- /dev/null +++ b/node_modules/locutus/php/funchand/create_function.js.map @@ -0,0 +1 @@ +{"version":3,"sources":["../../../src/php/funchand/create_function.js"],"names":["module","exports","create_function","args","code","Function","apply","split","concat","e"],"mappings":";;AAAAA,OAAOC,OAAP,GAAiB,SAASC,eAAT,CAA0BC,IAA1B,EAAgCC,IAAhC,EAAsC;AAAE;AACvD;AACA;AACA;AACA;AACA;AACA;;AAEA,MAAI;AACF,WAAOC,SAASC,KAAT,CAAe,IAAf,EAAqBH,KAAKI,KAAL,CAAW,GAAX,EAAgBC,MAAhB,CAAuBJ,IAAvB,CAArB,CAAP;AACD,GAFD,CAEE,OAAOK,CAAP,EAAU;AACV,WAAO,KAAP;AACD;AACF,CAbD","file":"create_function.js","sourcesContent":["module.exports = function create_function (args, code) { // eslint-disable-line camelcase\n // discuss at: http://locutus.io/php/create_function/\n // original by: Johnny Mast (http://www.phpvrouwen.nl)\n // reimplemented by: Brett Zamir (http://brett-zamir.me)\n // example 1: var $f = create_function('a, b', 'return (a + b)')\n // example 1: $f(1, 2)\n // returns 1: 3\n\n try {\n return Function.apply(null, args.split(',').concat(code))\n } catch (e) {\n return false\n }\n}\n"]}
\ No newline at end of file diff --git a/node_modules/locutus/php/funchand/function_exists.js b/node_modules/locutus/php/funchand/function_exists.js new file mode 100644 index 0000000..5c8aa99 --- /dev/null +++ b/node_modules/locutus/php/funchand/function_exists.js @@ -0,0 +1,22 @@ +'use strict'; + +module.exports = function function_exists(funcName) { + // eslint-disable-line camelcase + // discuss at: http://locutus.io/php/function_exists/ + // original by: Kevin van Zonneveld (http://kvz.io) + // improved by: Steve Clay + // improved by: Legaev Andrey + // improved by: Brett Zamir (http://brett-zamir.me) + // example 1: function_exists('isFinite') + // returns 1: true + // test: skip-1 + + var $global = typeof window !== 'undefined' ? window : global; + + if (typeof funcName === 'string') { + funcName = $global[funcName]; + } + + return typeof funcName === 'function'; +}; +//# sourceMappingURL=function_exists.js.map
\ No newline at end of file diff --git a/node_modules/locutus/php/funchand/function_exists.js.map b/node_modules/locutus/php/funchand/function_exists.js.map new file mode 100644 index 0000000..097d186 --- /dev/null +++ b/node_modules/locutus/php/funchand/function_exists.js.map @@ -0,0 +1 @@ +{"version":3,"sources":["../../../src/php/funchand/function_exists.js"],"names":["module","exports","function_exists","funcName","$global","window","global"],"mappings":";;AAAAA,OAAOC,OAAP,GAAiB,SAASC,eAAT,CAA0BC,QAA1B,EAAoC;AAAE;AACrD;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA,MAAIC,UAAW,OAAOC,MAAP,KAAkB,WAAlB,GAAgCA,MAAhC,GAAyCC,MAAxD;;AAEA,MAAI,OAAOH,QAAP,KAAoB,QAAxB,EAAkC;AAChCA,eAAWC,QAAQD,QAAR,CAAX;AACD;;AAED,SAAO,OAAOA,QAAP,KAAoB,UAA3B;AACD,CAjBD","file":"function_exists.js","sourcesContent":["module.exports = function function_exists (funcName) { // eslint-disable-line camelcase\n // discuss at: http://locutus.io/php/function_exists/\n // original by: Kevin van Zonneveld (http://kvz.io)\n // improved by: Steve Clay\n // improved by: Legaev Andrey\n // improved by: Brett Zamir (http://brett-zamir.me)\n // example 1: function_exists('isFinite')\n // returns 1: true\n // test: skip-1\n\n var $global = (typeof window !== 'undefined' ? window : global)\n\n if (typeof funcName === 'string') {\n funcName = $global[funcName]\n }\n\n return typeof funcName === 'function'\n}\n"]}
\ No newline at end of file diff --git a/node_modules/locutus/php/funchand/get_defined_functions.js b/node_modules/locutus/php/funchand/get_defined_functions.js new file mode 100644 index 0000000..1945d6b --- /dev/null +++ b/node_modules/locutus/php/funchand/get_defined_functions.js @@ -0,0 +1,51 @@ +'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 get_defined_functions() { + // eslint-disable-line camelcase + // discuss at: http://locutus.io/php/get_defined_functions/ + // original by: Brett Zamir (http://brett-zamir.me) + // improved by: Brett Zamir (http://brett-zamir.me) + // note 1: Test case 1: If get_defined_functions can find + // note 1: itself in the defined functions, it worked :) + // example 1: function test_in_array (array, p_val) {for(var i = 0, l = array.length; i < l; i++) {if (array[i] === p_val) return true} return false} + // example 1: var $funcs = get_defined_functions() + // example 1: var $found = test_in_array($funcs, 'get_defined_functions') + // example 1: var $result = $found + // returns 1: true + // test: skip-1 + + var $global = typeof window !== 'undefined' ? window : global; + $global.$locutus = $global.$locutus || {}; + var $locutus = $global.$locutus; + $locutus.php = $locutus.php || {}; + + var i = ''; + var arr = []; + var already = {}; + + for (i in $global) { + try { + if (typeof $global[i] === 'function') { + if (!already[i]) { + already[i] = 1; + arr.push(i); + } + } else if (_typeof($global[i]) === 'object') { + for (var j in $global[i]) { + if (typeof $global[j] === 'function' && $global[j] && !already[j]) { + already[j] = 1; + arr.push(j); + } + } + } + } catch (e) { + // Some objects in Firefox throw exceptions when their + // properties are accessed (e.g., sessionStorage) + } + } + + return arr; +}; +//# sourceMappingURL=get_defined_functions.js.map
\ No newline at end of file diff --git a/node_modules/locutus/php/funchand/get_defined_functions.js.map b/node_modules/locutus/php/funchand/get_defined_functions.js.map new file mode 100644 index 0000000..a79d768 --- /dev/null +++ b/node_modules/locutus/php/funchand/get_defined_functions.js.map @@ -0,0 +1 @@ +{"version":3,"sources":["../../../src/php/funchand/get_defined_functions.js"],"names":["module","exports","get_defined_functions","$global","window","global","$locutus","php","i","arr","already","push","j","e"],"mappings":";;;;AAAAA,OAAOC,OAAP,GAAiB,SAASC,qBAAT,GAAkC;AAAE;AACnD;AACA;AACA;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,MAAIC,IAAI,EAAR;AACA,MAAIC,MAAM,EAAV;AACA,MAAIC,UAAU,EAAd;;AAEA,OAAKF,CAAL,IAAUL,OAAV,EAAmB;AACjB,QAAI;AACF,UAAI,OAAOA,QAAQK,CAAR,CAAP,KAAsB,UAA1B,EAAsC;AACpC,YAAI,CAACE,QAAQF,CAAR,CAAL,EAAiB;AACfE,kBAAQF,CAAR,IAAa,CAAb;AACAC,cAAIE,IAAJ,CAASH,CAAT;AACD;AACF,OALD,MAKO,IAAI,QAAOL,QAAQK,CAAR,CAAP,MAAsB,QAA1B,EAAoC;AACzC,aAAK,IAAII,CAAT,IAAcT,QAAQK,CAAR,CAAd,EAA0B;AACxB,cAAI,OAAOL,QAAQS,CAAR,CAAP,KAAsB,UAAtB,IAAoCT,QAAQS,CAAR,CAApC,IAAkD,CAACF,QAAQE,CAAR,CAAvD,EAAmE;AACjEF,oBAAQE,CAAR,IAAa,CAAb;AACAH,gBAAIE,IAAJ,CAASC,CAAT;AACD;AACF;AACF;AACF,KAdD,CAcE,OAAOC,CAAP,EAAU;AACV;AACA;AACD;AACF;;AAED,SAAOJ,GAAP;AACD,CA5CD","file":"get_defined_functions.js","sourcesContent":["module.exports = function get_defined_functions () { // eslint-disable-line camelcase\n // discuss at: http://locutus.io/php/get_defined_functions/\n // original by: Brett Zamir (http://brett-zamir.me)\n // improved by: Brett Zamir (http://brett-zamir.me)\n // note 1: Test case 1: If get_defined_functions can find\n // note 1: itself in the defined functions, it worked :)\n // example 1: function test_in_array (array, p_val) {for(var i = 0, l = array.length; i < l; i++) {if (array[i] === p_val) return true} return false}\n // example 1: var $funcs = get_defined_functions()\n // example 1: var $found = test_in_array($funcs, 'get_defined_functions')\n // example 1: var $result = $found\n // returns 1: true\n // test: skip-1\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 i = ''\n var arr = []\n var already = {}\n\n for (i in $global) {\n try {\n if (typeof $global[i] === 'function') {\n if (!already[i]) {\n already[i] = 1\n arr.push(i)\n }\n } else if (typeof $global[i] === 'object') {\n for (var j in $global[i]) {\n if (typeof $global[j] === 'function' && $global[j] && !already[j]) {\n already[j] = 1\n arr.push(j)\n }\n }\n }\n } catch (e) {\n // Some objects in Firefox throw exceptions when their\n // properties are accessed (e.g., sessionStorage)\n }\n }\n\n return arr\n}\n"]}
\ No newline at end of file diff --git a/node_modules/locutus/php/funchand/index.js b/node_modules/locutus/php/funchand/index.js new file mode 100644 index 0000000..ffc1495 --- /dev/null +++ b/node_modules/locutus/php/funchand/index.js @@ -0,0 +1,8 @@ +'use strict'; + +module.exports['call_user_func'] = require('./call_user_func'); +module.exports['call_user_func_array'] = require('./call_user_func_array'); +module.exports['create_function'] = require('./create_function'); +module.exports['function_exists'] = require('./function_exists'); +module.exports['get_defined_functions'] = require('./get_defined_functions'); +//# sourceMappingURL=index.js.map
\ No newline at end of file diff --git a/node_modules/locutus/php/funchand/index.js.map b/node_modules/locutus/php/funchand/index.js.map new file mode 100644 index 0000000..e7c5372 --- /dev/null +++ b/node_modules/locutus/php/funchand/index.js.map @@ -0,0 +1 @@ +{"version":3,"sources":["../../../src/php/funchand/index.js"],"names":["module","exports","require"],"mappings":";;AAAAA,OAAOC,OAAP,CAAe,gBAAf,IAAmCC,QAAQ,kBAAR,CAAnC;AACAF,OAAOC,OAAP,CAAe,sBAAf,IAAyCC,QAAQ,wBAAR,CAAzC;AACAF,OAAOC,OAAP,CAAe,iBAAf,IAAoCC,QAAQ,mBAAR,CAApC;AACAF,OAAOC,OAAP,CAAe,iBAAf,IAAoCC,QAAQ,mBAAR,CAApC;AACAF,OAAOC,OAAP,CAAe,uBAAf,IAA0CC,QAAQ,yBAAR,CAA1C","file":"index.js","sourcesContent":["module.exports['call_user_func'] = require('./call_user_func')\nmodule.exports['call_user_func_array'] = require('./call_user_func_array')\nmodule.exports['create_function'] = require('./create_function')\nmodule.exports['function_exists'] = require('./function_exists')\nmodule.exports['get_defined_functions'] = require('./get_defined_functions')\n"]}
\ No newline at end of file |