.map(variable =>
sysprefs[variable].length
? sysprefs[variable].map(value =>
"%s=%s".format(variable, value)
"%s=%s".format(variable, encodeURIComponent(value))
)
: "%s=".format(variable)
-