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 8ad1210 commit b87d6bcCopy full SHA for b87d6bc
1 file changed
src/implementation/c/compilation.ts
@@ -84,7 +84,7 @@ export class Compilation {
84
const limit = Math.min(buffer.length, i + BLOB_GROUP_SIZE);
85
const hex: string[] = [];
86
for (let j = i; j < limit; j++) {
87
- const value = buffer[j] as number;
+ const value = buffer[j];
88
89
const ch = String.fromCharCode(value);
90
// `'`, `\`
0 commit comments