blob: 1945d6b5c11879db4ca43973a02d654e4b85f932 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
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
|