octo-deno/lib/make/strings.js

43 lines
1.0 KiB
JavaScript
Raw Normal View History

2017-04-22 22:49:49 +00:00
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
make.strings = {
toString: function (object) {
2017-04-24 15:08:38 +00:00
return object ? object.toSource() : '' + object;
2017-04-22 22:49:49 +00:00
},
string: function (maxlen) {
let s = "";
2017-04-25 15:22:15 +00:00
if (maxlen === null || maxlen === undefined) {
2017-04-25 15:19:25 +00:00
maxlen = make.number.rangeNumber();
2017-04-22 22:49:49 +00:00
}
for (let i = 0; i < maxlen; i++) {
//s += String.fromCodePoint(Random.pick(make.fonts.layoutCharCodes));
2017-04-24 15:08:38 +00:00
s += "A";
2017-04-22 22:49:49 +00:00
}
return s;
},
quotedString: function (maxlen) {
return utils.common.quote(make.strings.string(maxlen));
},
stringFromBlocks: function (set, maxlen) {
let s = "";
for (let i = 0; i < random.number(maxlen || 255); i++) {
s += random.pick(set);
}
return s;
},
digitsHex: function (n) {
let s = '';
while (n-- > 0) {
s += (random.number(16)).toString(16);
}
return s;
},
};