0.0.1 • Published 9 years ago

xurl v0.0.1

Weekly downloads
3
License
MIT
Repository
github
Last release
9 years ago

xURL

Build Status

usage:

var xURL = require('xurl');
xURL('http://www.google.com:8080/index.html?qs#hash');

/* returns:
{
  "protocol": "http:",
  "host": "www.google.com:8080",
  "hostname": "www.google.com",
  "port": "8080",
  "pathname": "/index.html",
  "search": "?qs",
  "hash": "#hash",
  "href": "http://www.google.com:8080/index.html?qs#hash"
}
*/