Skip to content

Commit

Permalink
lint fix
Browse files Browse the repository at this point in the history
  • Loading branch information
ikreymer committed Aug 13, 2024
1 parent 87fc9e9 commit 2af5946
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/wombat.js
Original file line number Diff line number Diff line change
Expand Up @@ -721,7 +721,7 @@ Wombat.prototype.skipWrapScriptTextBasedOnText = function(text, excludes) {
for (const prop of this.OVERRIDE_PROPS) {
const inx = text.indexOf(prop);
if (inx >= 0) {
if (text.indexOf("var " + prop) >= 0) {
if (text.indexOf('var ' + prop) >= 0) {
excludes.push(prop);
}
found = true;
Expand Down

0 comments on commit 2af5946

Please sign in to comment.