Skip to content

Commit

Permalink
Merge pull request #835 from steinybot/fix/urlsearchparams-constructor
Browse files Browse the repository at this point in the history
Fix URLSearchParams constructor parameters
  • Loading branch information
zetashift authored Mar 4, 2024
2 parents efe1b87 + 3e23f71 commit 661c8dc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dom/src/main/scala/org/scalajs/dom/URLSearchParams.scala
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ class URLSearchParams extends js.Iterable[js.Tuple2[String, String]] {

/** Leading '?' characters are ignored. */
def this(init: String) = this()
def this(init: Sequence[String]) = this()
def this(init: Sequence[js.Tuple2[String, String]]) = this()
def this(init: js.Dictionary[String]) = this()

def append(name: String, value: String): Unit = js.native
Expand Down

0 comments on commit 661c8dc

Please sign in to comment.