Skip to content

Commit

Permalink
declare match variable $$__m for output code
Browse files Browse the repository at this point in the history
  • Loading branch information
jcubic committed Oct 15, 2021
1 parent f28de4d commit ae12c63
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion bin/compile.js
Expand Up @@ -61,7 +61,7 @@ function format_error(code, e) {
return output.join('\n');
} catch (ex) {
// ignore errors
console.error(e);
// console.error(e);
}
return '';
}
Expand Down
2 changes: 1 addition & 1 deletion docs/index.js
Expand Up @@ -33,7 +33,7 @@ class WebAdapter {
async post(url, data) { }
}

var cookie, argv, term;
var cookie, argv, term, $$__m;
if (is_node()) {
argv = process.argv;
} else {
Expand Down
2 changes: 1 addition & 1 deletion src/prefix.js
Expand Up @@ -33,7 +33,7 @@ class WebAdapter {
async post(url, data) { }
}

var cookie, argv, term;
var cookie, argv, term, $$__m;
if (is_node()) {
argv = process.argv;
} else {
Expand Down

0 comments on commit ae12c63

Please sign in to comment.