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 bbd61bf commit 7efa3f9Copy full SHA for 7efa3f9
src/script.js
@@ -159,7 +159,7 @@ function toASM(chunks) {
159
chunks = decompile(chunks);
160
}
161
if (!chunks) {
162
- throw new Error('convert invalid chunks to ASM');
+ throw new Error('Could not convert invalid chunks to ASM');
163
164
return chunks
165
.map(chunk => {
ts_src/script.ts
@@ -169,7 +169,7 @@ export function toASM(chunks: Buffer | Array<number | Buffer>): string {
169
chunks = decompile(chunks) as Stack;
170
171
172
173
174
175
0 commit comments