A Node.js API function was called with an incompatible this value.
const urlSearchParams = new URLSearchParams('foo=bar&baz=new');const buf = Buffer.alloc(1);urlSearchParams.has.call(buf, 'foo');// Throws a TypeError with code 'ERR_INVALID_THIS'
