@@ -672,8 +672,7 @@ class URLSearchParams {
672
672
throw new TypeError ( 'Value of `this` is not a URLSearchParams' ) ;
673
673
}
674
674
if ( arguments . length < 2 ) {
675
- throw new TypeError (
676
- 'Both `name` and `value` arguments need to be specified' ) ;
675
+ throw new TypeError ( '"name" and "value" arguments must be specified' ) ;
677
676
}
678
677
679
678
name = String ( name ) ;
@@ -687,7 +686,7 @@ class URLSearchParams {
687
686
throw new TypeError ( 'Value of `this` is not a URLSearchParams' ) ;
688
687
}
689
688
if ( arguments . length < 1 ) {
690
- throw new TypeError ( 'The ` name` argument needs to be specified' ) ;
689
+ throw new TypeError ( '" name" argument must be specified' ) ;
691
690
}
692
691
693
692
const list = this [ searchParams ] ;
@@ -708,8 +707,7 @@ class URLSearchParams {
708
707
throw new TypeError ( 'Value of `this` is not a URLSearchParams' ) ;
709
708
}
710
709
if ( arguments . length < 2 ) {
711
- throw new TypeError (
712
- 'Both `name` and `value` arguments need to be specified' ) ;
710
+ throw new TypeError ( '"name" and "value" arguments must be specified' ) ;
713
711
}
714
712
715
713
const list = this [ searchParams ] ;
@@ -749,7 +747,7 @@ class URLSearchParams {
749
747
throw new TypeError ( 'Value of `this` is not a URLSearchParams' ) ;
750
748
}
751
749
if ( arguments . length < 1 ) {
752
- throw new TypeError ( 'The ` name` argument needs to be specified' ) ;
750
+ throw new TypeError ( '" name" argument must be specified' ) ;
753
751
}
754
752
755
753
const list = this [ searchParams ] ;
@@ -767,7 +765,7 @@ class URLSearchParams {
767
765
throw new TypeError ( 'Value of `this` is not a URLSearchParams' ) ;
768
766
}
769
767
if ( arguments . length < 1 ) {
770
- throw new TypeError ( 'The ` name` argument needs to be specified' ) ;
768
+ throw new TypeError ( '" name" argument must be specified' ) ;
771
769
}
772
770
773
771
const list = this [ searchParams ] ;
@@ -786,7 +784,7 @@ class URLSearchParams {
786
784
throw new TypeError ( 'Value of `this` is not a URLSearchParams' ) ;
787
785
}
788
786
if ( arguments . length < 1 ) {
789
- throw new TypeError ( 'The ` name` argument needs to be specified' ) ;
787
+ throw new TypeError ( '" name" argument must be specified' ) ;
790
788
}
791
789
792
790
const list = this [ searchParams ] ;
@@ -814,8 +812,8 @@ class URLSearchParams {
814
812
if ( ! this || ! ( this instanceof URLSearchParams ) ) {
815
813
throw new TypeError ( 'Value of `this` is not a URLSearchParams' ) ;
816
814
}
817
- if ( arguments . length < 1 ) {
818
- throw new TypeError ( 'The ` callback` argument needs to be specified ' ) ;
815
+ if ( typeof callback !== 'function' ) {
816
+ throw new TypeError ( '" callback" argument must be a function ' ) ;
819
817
}
820
818
821
819
let list = this [ searchParams ] ;
0 commit comments