Skip to content

Commit

Permalink
fix for lint warning
Browse files Browse the repository at this point in the history
  • Loading branch information
gfwilliams committed Jul 7, 2023
1 parent 39c007c commit 9f798e9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion js/appinfo.js
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ function translateJS(options, app, code) {
tokenString = Utils.convertStringToISOLatin(tokenString);
} else if (tok.str.startsWith("`")) {
// it's a tempated String! scan all clauses inside it and re-run on the JS in those
var re = /\$\{[^\}]*\}/g;
var re = /\$\{[^}]*\}/g;
while ((match = re.exec(tokenString)) != null) {
var orig = match[0];
var replacement = translateJS(options, app, orig.slice(2,-1));
Expand Down

0 comments on commit 9f798e9

Please sign in to comment.