We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e209e06 commit f1f627aCopy full SHA for f1f627a
lib/util/createBoundary.ts
@@ -15,7 +15,7 @@ function createBoundary(size: number): string {
15
// except it only support signed 32-bit integers.
16
// Because the result of this operation will always be
17
// a number in range `0` and `alphabet.length - 1` (inclusive),
18
- // so we don't need `Math.floor()` too.
+ // we don't need `Math.floor()` too.
19
/* eslint no-bitwise: ["error", {"allow": ["<<"]}] */
20
res += alphabet[(Math.random() * alphabet.length) << 0]
21
}
0 commit comments