Fix standard style issues
This commit is contained in:
parent
be4fef5d86
commit
ade22d6dc4
2 changed files with 11 additions and 11 deletions
|
@ -50,7 +50,7 @@ make.network = {
|
||||||
randomIPv6: function () {
|
randomIPv6: function () {
|
||||||
let parts = []
|
let parts = []
|
||||||
|
|
||||||
for (let i=0; i<8; i++) {
|
for (let i = 0; i < 8; i++) {
|
||||||
parts.push(random.hex(4))
|
parts.push(random.hex(4))
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -98,7 +98,7 @@ make.text = {
|
||||||
0x2044 // fraction slash character
|
0x2044 // fraction slash character
|
||||||
])
|
])
|
||||||
},
|
},
|
||||||
bidiCharCodes: function() {
|
bidiCharCodes: function () {
|
||||||
return random.pick([
|
return random.pick([
|
||||||
0x0660, // START_HINDI_DIGITS
|
0x0660, // START_HINDI_DIGITS
|
||||||
0x0669, // END_HINDI_DIGITS
|
0x0669, // END_HINDI_DIGITS
|
||||||
|
@ -107,7 +107,7 @@ make.text = {
|
||||||
0x0030, // START_ARABIC_DIGITS
|
0x0030, // START_ARABIC_DIGITS
|
||||||
0x0039, // END_ARABIC_DIGITS
|
0x0039, // END_ARABIC_DIGITS
|
||||||
0x06f0, // START_FARSI_DIGITS
|
0x06f0, // START_FARSI_DIGITS
|
||||||
0x06f9, // END_FARSI_DIGITS
|
0x06f9 // END_FARSI_DIGITS
|
||||||
])
|
])
|
||||||
},
|
},
|
||||||
// http://www.unicode.org/Public/6.0.0/ucd/UnicodeData.txt
|
// http://www.unicode.org/Public/6.0.0/ucd/UnicodeData.txt
|
||||||
|
@ -182,7 +182,7 @@ make.text = {
|
||||||
fromBlocks: function (set, maxlen) {
|
fromBlocks: function (set, maxlen) {
|
||||||
let s = ''
|
let s = ''
|
||||||
|
|
||||||
for (let i=0; i<random.number(maxlen || 255); i++) {
|
for (let i = 0; i < random.number(maxlen || 255); i++) {
|
||||||
s += random.pick(set)
|
s += random.pick(set)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -191,25 +191,25 @@ make.text = {
|
||||||
quotedString: function () {
|
quotedString: function () {
|
||||||
return utils.common.quote(make.text.any())
|
return utils.common.quote(make.text.any())
|
||||||
},
|
},
|
||||||
chars: function() {
|
chars: function () {
|
||||||
return random.pick([
|
return random.pick([
|
||||||
make.text.controlChar,
|
make.text.controlChar,
|
||||||
make.text.token,
|
make.text.token,
|
||||||
make.text.assignmentOperator,
|
make.text.assignmentOperator,
|
||||||
make.text.arithmeticOperator,
|
make.text.arithmeticOperator,
|
||||||
String.fromCharCode(make.text.layoutCharCodes),
|
String.fromCharCode(make.text.layoutCharCodes),
|
||||||
String.fromCharCode(make.text.bidiCharCodes),
|
String.fromCharCode(make.text.bidiCharCodes)
|
||||||
]);
|
])
|
||||||
},
|
},
|
||||||
any: function() {
|
any: function () {
|
||||||
// Generate a string compromised of random individual characters
|
// Generate a string compromised of random individual characters
|
||||||
// This might be too slow to used for all 'texts' uses
|
// This might be too slow to used for all 'texts' uses
|
||||||
let s = '';
|
let s = ''
|
||||||
// TODO: Len calculation take from DOMFuzz - maybe we should revise this?
|
// TODO: Len calculation take from DOMFuzz - maybe we should revise this?
|
||||||
let len = random.number(1000) * random.number(10) + random.number(10)
|
let len = random.number(1000) * random.number(10) + random.number(10)
|
||||||
for (let i=0; i<len; i++) {
|
for (let i = 0; i < len; i++) {
|
||||||
s += make.text.chars()
|
s += make.text.chars()
|
||||||
}
|
}
|
||||||
return s;
|
return s
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue