opurl
v1.0.0
Published
Object-oriented URL utility
Downloads
2
Readme
opurl
URL utility. Work with the path portion of URLs. Expose the same API as opath;
Installation
npm install opurl
Example
var Url = require('opurl');
var url = new Url('http://example.com/foo/bar?q=search#hash').dirname();
url.toString() === 'http://example.com/foo?q=search#hash';