Created
October 23, 2018 18:41
-
-
Save nayeemzen/9ef872d75a6147c56586bf0f2f37b32b to your computer and use it in GitHub Desktop.
Revisions
-
Nayeem Zen created this gist
Oct 23, 2018 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,16 @@ // Functional programming approach to parsing query strings in Typescript/ES6. function parseQueryString(search: string) { return (search.startsWith('?') ? search.substring(1) : search) .split('&') .map(str => { const eqIdx = str.indexOf('='); if (eqIdx <= 0 || eqIdx >= str.length - 1) { return {}; } const key = str.substring(0, eqIdx); const value = str.substring(eqIdx + 1, str.length); return {[key]: value}; }) .reduce((prev, next) => ({...prev, ...next})); }