Corrected jshint warnings

This commit is contained in:
pyoor 2017-04-24 11:08:38 -04:00
parent ddbbe9f22b
commit 93bcec2976

View file

@ -4,7 +4,7 @@
make.strings = { make.strings = {
toString: function (object) { toString: function (object) {
return object ? object.toSource() : '' + object return object ? object.toSource() : '' + object;
}, },
string: function (maxlen) { string: function (maxlen) {
let s = ""; let s = "";
@ -15,7 +15,7 @@ make.strings = {
for (let i = 0; i < maxlen; i++) { for (let i = 0; i < maxlen; i++) {
//s += String.fromCodePoint(Random.pick(make.fonts.layoutCharCodes)); //s += String.fromCodePoint(Random.pick(make.fonts.layoutCharCodes));
s += "A" s += "A";
} }
return s; return s;