Corrected jshint warnings
This commit is contained in:
parent
ddbbe9f22b
commit
93bcec2976
1 changed files with 2 additions and 2 deletions
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue