REDROOM
PHP 8.1.33
Path:
Logout
Edit File
Size: 1.57 KB
Close
//lib/node_modules/npm/node_modules/url-parse-lax/readme.md
Text
Base64
# 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)
Save
Close
Exit & Reset
Text mode: syntax highlighting auto-detects file type.
Directory Contents
Dirs: 0 × Files: 4
Delete Selected
Select All
Select None
Sort:
Name
Size
Modified
Enable drag-to-move
Name
Size
Perms
Modified
Actions
index.js
268 B
lrw-r--r--
2021-03-10 14:36:37
Edit
Download
Rename
Chmod
Change Date
Delete
OK
Cancel
recursive
OK
Cancel
recursive
OK
Cancel
license
1.09 KB
lrw-r--r--
2021-03-10 14:36:37
Edit
Download
Rename
Chmod
Change Date
Delete
OK
Cancel
recursive
OK
Cancel
recursive
OK
Cancel
package.json
1.65 KB
lrw-r--r--
2021-03-10 14:36:37
Edit
Download
Rename
Chmod
Change Date
Delete
OK
Cancel
recursive
OK
Cancel
recursive
OK
Cancel
readme.md
1.57 KB
lrw-r--r--
2021-03-10 14:36:37
Edit
Download
Rename
Chmod
Change Date
Delete
OK
Cancel
recursive
OK
Cancel
recursive
OK
Cancel
Zip Selected
If ZipArchive is unavailable, a
.tar
will be created (no compression).