-
-
Save davidjgonzalez/9fec2823266d68cffb67adba3d849e7a to your computer and use it in GitHub Desktop.
This file contains 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 characters
export default class Page { | |
constructor() { | |
} | |
get path() { | |
return "light.html"; | |
} | |
getQueryString(params) { | |
return "?" + | |
Object.keys(params).map(key => { | |
return encodeURIComponent(key) + '=' + encodeURIComponent(params[key]); | |
}).join('&'); | |
} | |
} | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment