Skip to content

Instantly share code, notes, and snippets.

@davidjgonzalez
Created September 20, 2018 21:02
Show Gist options
  • Save davidjgonzalez/9fec2823266d68cffb67adba3d849e7a to your computer and use it in GitHub Desktop.
Save davidjgonzalez/9fec2823266d68cffb67adba3d849e7a to your computer and use it in GitHub Desktop.
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