aboutsummaryrefslogtreecommitdiff
path: root/src/modules/helpers
diff options
context:
space:
mode:
authorST-DDT <[email protected]>2023-10-09 20:22:43 +0200
committerGitHub <[email protected]>2023-10-09 18:22:43 +0000
commit350dfbf2c57f023a78567da60bf4792ebd1a41f7 (patch)
tree876c2172b3a483e00ec888d8c981978a365cea9d /src/modules/helpers
parent72bf57d9dfe6569f595e64441e02feb8d5d3165f (diff)
downloadfaker-350dfbf2c57f023a78567da60bf4792ebd1a41f7.tar.xz
faker-350dfbf2c57f023a78567da60bf4792ebd1a41f7.zip
infra(unicorn): no-array-push-push (#2454)
Diffstat (limited to 'src/modules/helpers')
-rw-r--r--src/modules/helpers/index.ts12
1 files changed, 8 insertions, 4 deletions
diff --git a/src/modules/helpers/index.ts b/src/modules/helpers/index.ts
index 3cc9e855..59a4041a 100644
--- a/src/modules/helpers/index.ts
+++ b/src/modules/helpers/index.ts
@@ -463,8 +463,10 @@ export class SimpleHelpersModule {
if (range[0].indexOf('-') === -1) {
// handle non-ranges
if (isCaseInsensitive && isNaN(Number(range[0]))) {
- rangeCodes.push(range[0].toUpperCase().charCodeAt(0));
- rangeCodes.push(range[0].toLowerCase().charCodeAt(0));
+ rangeCodes.push(
+ range[0].toUpperCase().charCodeAt(0),
+ range[0].toLowerCase().charCodeAt(0)
+ );
} else {
rangeCodes.push(range[0].charCodeAt(0));
}
@@ -481,8 +483,10 @@ export class SimpleHelpersModule {
for (let i = min; i <= max; i++) {
if (isCaseInsensitive && isNaN(Number(String.fromCharCode(i)))) {
const ch = String.fromCharCode(i);
- rangeCodes.push(ch.toUpperCase().charCodeAt(0));
- rangeCodes.push(ch.toLowerCase().charCodeAt(0));
+ rangeCodes.push(
+ ch.toUpperCase().charCodeAt(0),
+ ch.toLowerCase().charCodeAt(0)
+ );
} else {
rangeCodes.push(i);
}