Package Exports
- get-url-origin
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (get-url-origin) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
get-url-origin 
Get origin from url string in Node.js.
This library based on Node.js's Legacy URL API(require('url').Url)
If you can use Node.js >=7, please use New built-in URL module.
Install
Install with npm:
npm install get-url-originUsage
API
/**
* Return URL origin string from `urlString`.
* If origin is not found, return null
* @param {string} urlString
* @returns {string | null}
* @see https://url.spec.whatwg.org/#origin
*/
export declare const getURLOrigin: (urlString: string) => string | null;Example
getURLOrigin('https://example.com/file/to/path?example'); // => 'https://example.com'
getURLOrigin('http://example.com:80/path/to/file'); // => 'http://example.com:80'Changelog
See Releases page.
Running tests
Install devDependencies and Run npm test:
npm i -d && npm testContributing
Pull requests and stars are always welcome.
For bugs and feature requests, please create an issue.
- Fork it!
- Create your feature branch:
git checkout -b my-new-feature - Commit your changes:
git commit -am 'Add some feature' - Push to the branch:
git push origin my-new-feature - Submit a pull request :D
Author
License
MIT © azu