Skip to content

Commit

Permalink
Fixes: #50432
Browse files Browse the repository at this point in the history
  • Loading branch information
strawberrywz committed Nov 26, 2023
1 parent 6da91f5 commit 2379b0a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/internal/url.js
Original file line number Diff line number Diff line change
Expand Up @@ -1105,7 +1105,7 @@ function installObjectURLMethods() {

function revokeObjectURL(url) {
if (arguments.length == 0) {

Check failure on line 1107 in lib/internal/url.js

View workflow job for this annotation

GitHub Actions / lint-js-and-md

Expected '===' and instead saw '=='
throw new ERR_MISSING_ARGS('url')
throw new ERR_MISSING_ARGS('url');
}
bindingBlob.revokeObjectURL(`${url}`);
}
Expand Down

0 comments on commit 2379b0a

Please sign in to comment.