PATH:
usr
/
local
/
lib
/
node_modules
/
bower
/
lib
/
node_modules
/
bower-config
/
node_modules
/
mout
/
queryString
/** * Gets full query as string with all special chars decoded. */ function getQuery(url) { // url = url.replace(/#.*\?/, '?'); //removes hash (to avoid getting hash query) var queryString = /\?[a-zA-Z0-9\=\&\%\$\-\_\.\+\!\*\'\(\)\,]+/.exec(url); //valid chars according to: http://www.ietf.org/rfc/rfc1738.txt return (queryString)? decodeURIComponent(queryString[0].replace(/\+/g,' ')) : ''; } module.exports = getQuery;
[-] encode.js
[edit]
[-] getParam.js
[edit]
[+]
..
[-] contains.js
[edit]
[-] parse.js
[edit]
[-] decode.js
[edit]
[-] getQuery.js
[edit]
[-] setParam.js
[edit]