Corrected jshint warnings

This commit is contained in:
pyoor 2017-04-24 11:08:38 -04:00
parent ddbbe9f22b
commit 93bcec2976
1 changed files with 2 additions and 2 deletions

View File

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