bundler variable disambiguation

This commit is contained in:
Leo Horie 2016-05-20 22:38:10 -04:00
parent 2ca8fa6e66
commit e5391a1957
10 changed files with 75 additions and 542 deletions

View file

@ -1,6 +1,6 @@
"use strict"
module.exports = function parseQueryString(string) {
module.exports = function(string) {
if (string === "" || string == null) return {}
if (string.charAt(0) === "?") string = string.slice(1)