Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion src/jsc/modules/lib/URLSearchParams.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,8 @@
const urlencoded = require("./urlencoded");

exports.implementation = class URLSearchParamsImpl {
constructor(globalObject, constructorArgs, { doNotStripQMark = false }) {
constructor(globalObject, constructorArgs = [""], options = {}) {
const { doNotStripQMark = false } = options || {};

Check failure on line 6 in src/jsc/modules/lib/URLSearchParams.js

View workflow job for this annotation

GitHub Actions / call-fossid-workflow / Fossid Annotate PR

FossID License Issue Detected

Source code with 'MIT' license found in local file 'src/jsc/modules/lib/URLSearchParams.js' (Match: jsdom/whatwg-url/12.0.0, 128 lines, url: https://github.com/jsdom/whatwg-url/archive/refs/tags/v12.0.0.tar.gz, file: lib/URLSearchParams-impl.js)
let init = constructorArgs[0];
this._list = [];
this._url = null;
Expand Down
Loading