Linux host45.registrar-servers.com 4.18.0-513.18.1.lve.2.el8.x86_64 #1 SMP Sat Mar 30 15:36:11 UTC 2024 x86_64
Apache
: 198.54.116.152 | : 216.73.216.115
Cant Read [ /etc/named.conf ]
8.1.32
bankpromax
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
lib /
node_modules /
npm /
node_modules /
url-parse-lax /
[ HOME SHELL ]
Name
Size
Permission
Action
index.js
268
B
-rw-r--r--
license
1.09
KB
-rw-r--r--
package.json
1.65
KB
-rw-r--r--
readme.md
1.57
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : readme.md
# url-parse-lax [](https://travis-ci.org/sindresorhus/url-parse-lax) > [`url.parse()`](https://nodejs.org/docs/latest/api/url.html#url_url_parse_urlstr_parsequerystring_slashesdenotehost) with support for protocol-less URLs & IPs ## Install ``` $ npm install --save url-parse-lax ``` ## Usage ```js var urlParseLax = require('url-parse-lax'); urlParseLax('sindresorhus.com'); /* { protocol: null, slashes: true, auth: null, host: 'sindresorhus.com', port: null, hostname: 'sindresorhus.com', hash: null, search: null, query: null, pathname: '/', path: '/', href: 'http://sindresorhus.com/' } */ urlParseLax('[2001:db8::]:8000'); /* { protocol: null, slashes: true, auth: null, host: '[2001:db8::]:8000', port: '8000', hostname: '2001:db8::', hash: null, search: null, query: null, pathname: '/', path: '/', href: 'http://[2001:db8::]:8000/' } */ ``` And with the built-in `url.parse()`: ```js var url = require('url'); url.parse('sindresorhus.com'); /* { protocol: null, slashes: null, auth: null, host: null, port: null, hostname: null, hash: null, search: null, query: null, pathname: 'sindresorhus', path: 'sindresorhus', href: 'sindresorhus' } */ url.parse('[2001:db8::]:8000'); /* { protocol: null, slashes: null, auth: null, host: null, port: null, hostname: null, hash: null, search: null, query: null, pathname: '[2001:db8::]:8000', path: '[2001:db8::]:8000', href: '[2001:db8::]:8000' } */ ``` ## License MIT © [Sindre Sorhus](http://sindresorhus.com)
Close