Skip to content

Commit 0c2536a

Browse files
committed
Remove unused genArgSequence. NFC
The usage of this function was removed in #17420.
1 parent 2ba2078 commit 0c2536a

File tree

1 file changed

+0
-9
lines changed

1 file changed

+0
-9
lines changed

src/modules.js

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -8,15 +8,6 @@
88

99
// Various namespace-like modules
1010

11-
// Constructs an array ['a0', 'a1', 'a2', ..., 'a(n-1)']
12-
function genArgSequence(n) {
13-
const args = [];
14-
for (let i = 0; i < n; ++i) {
15-
args.push('a' + i);
16-
}
17-
return args;
18-
}
19-
2011
// List of symbols that were added from the library.
2112
globalThis.librarySymbols = [];
2213

0 commit comments

Comments
 (0)