Skip to content

Commit

Permalink
fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
ikreymer committed Feb 18, 2024
1 parent 34fafdc commit 3568309
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 @@ -3276,7 +3276,7 @@ Wombat.prototype.overrideDataSet = function() {

var result = target[prop];

if (typeof(result) === "string" && wombat.startsWithOneOf(result, wombat.wb_prefixes)) {
if (typeof(result) === 'string' && wombat.startsWithOneOf(result, wombat.wb_prefixes)) {
return wombat.extractOriginalURL(result);
}

Expand Down

0 comments on commit 3568309

Please sign in to comment.