Skip to content

Instantly share code, notes, and snippets.

@dineshnagarit
Created April 26, 2019 06:43
Show Gist options
  • Save dineshnagarit/033a78d17686529bbf8750e2e159242c to your computer and use it in GitHub Desktop.
Save dineshnagarit/033a78d17686529bbf8750e2e159242c to your computer and use it in GitHub Desktop.
export default {
getParams() {
const scripts = document.getElementsByTagName('script'),
myScript = scripts[scripts.length - 1],
query = myScript.src.replace(/^[^\?]+\??/, '');
let Params = {};
if ( !query ) { return Params } // return empty object
const Pairs = query.split(/[;&]/);
for ( let i = 0; i < Pairs.length; i++ ) {
const KeyVal = Pairs[i].split('=');
if ( !KeyVal || KeyVal.length !== 2 ) { continue }
const key = decodeURI(KeyVal[0]),
val = decodeURI(KeyVal[1]);
Params[key] = val.replace(/\+/g, ' ');
}
return Params;
}
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment