blob: dae980c4d0074c2e2dfadd0ce000e0031f800756 [file] [edit]
'use strict';
require('../common');
// Test ensures that the function receives the url argument.
const assert = require('node:assert');
assert.throws(() => {
URL.revokeObjectURL();
}, {
code: 'ERR_MISSING_ARGS',
name: 'TypeError',
});