Linux bear.hostingplus.cl 4.18.0-513.18.1.lve.2.el8.x86_64 #1 SMP Sat Mar 30 15:36:11 UTC 2024 x86_64
LiteSpeed
Server IP : 192.140.57.17 & Your IP : 216.73.216.38
Domains :
Cant Read [ /etc/named.conf ]
User : explo
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
opt /
bitninja-dispatcher /
node_modules /
fn.name /
Delete
Unzip
Name
Size
Permission
Date
Action
.gitattributes
25
B
-rw-r--r--
2026-02-18 13:02
.travis.yml
181
B
-rw-r--r--
2026-02-18 13:02
LICENSE
1.09
KB
-rw-r--r--
2026-02-18 13:02
README.md
1.1
KB
-rw-r--r--
2026-02-18 13:02
index.js
988
B
-rw-r--r--
2026-02-18 13:02
package.json
1.64
KB
-rw-r--r--
2026-02-18 13:02
test.js
1.84
KB
-rw-r--r--
2026-02-18 13:02
Save
Rename
'use strict'; var toString = Object.prototype.toString; /** * Extract names from functions. * * @param {Function} fn The function who's name we need to extract. * @returns {String} The name of the function. * @public */ module.exports = function name(fn) { if ('string' === typeof fn.displayName && fn.constructor.name) { return fn.displayName; } else if ('string' === typeof fn.name && fn.name) { return fn.name; } // // Check to see if the constructor has a name. // if ( 'object' === typeof fn && fn.constructor && 'string' === typeof fn.constructor.name ) return fn.constructor.name; // // toString the given function and attempt to parse it out of it, or determine // the class. // var named = fn.toString() , type = toString.call(fn).slice(8, -1); if ('Function' === type) { named = named.substring(named.indexOf('(') + 1, named.indexOf(')')); } else { named = type; } return named || 'anonymous'; };