0.0.2 • Published 3 years ago

parse-location-hash v0.0.2

Weekly downloads
-
License
ISC
Repository
github
Last release
3 years ago

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);