url-extract-auth
v1.0.0
Published
Clean URL and extract auth string.
Downloads
4
Readme
node-url-extract-auth
Example
var extractAuth = require("url-extract-auth");
extractAuth("https://user221:[email protected]");
//"https://npmjs.com"
Installation
npm i url-extract-auth
API Reference
extractAuth(url, [authObject]) ⇒ string ⏏
Extract auth string from URL. If provided, sets values to auth object.
Kind: Exported function
Params
- url string
- [authObject] Object
Example
var authObject = {};
extractAuth("ftp://user221:[email protected]/files", authObject);
//"ftp://192.168.1.5/files"
authObject
//{ username: "user221", password: "deletethis" }
License
MPL 2.0