Experimental port to Firebase hosting

This commit is contained in:
Michael Jackson
2019-01-05 16:50:05 -08:00
parent e4d6df255e
commit 31e7d3865a
300 changed files with 129300 additions and 5817 deletions

View File

@ -1,4 +1,4 @@
function createSearch(query) {
export default function createSearch(query) {
const keys = Object.keys(query).sort();
const params = keys.reduce(
(memo, key) =>
@ -12,5 +12,3 @@ function createSearch(query) {
return params.length ? `?${params.join('&')}` : '';
}
module.exports = createSearch;