parse-location-hash
v0.0.2
Published
Utility to parse location hash/fragment
Downloads
3
Readme
parse-location-hash
Parse location hash/fragment to object.
Install
npm i parse-location-hash
Usage
// window.location.hash : "#access_token=testToken&token_type=bearer"
const hash = locationHashParser(window.location.hash);
// hash: { access_token: "testToken", token_type: "bearer" }
const { access_token } = hash;
localStorage.setItem("token", access_token);