(globalObject, newTarget)
| 4904 | return iterator2; |
| 4905 | }; |
| 4906 | function makeWrapper(globalObject, newTarget) { |
| 4907 | let proto2; |
| 4908 | if (newTarget !== void 0) { |
| 4909 | proto2 = newTarget.prototype; |
| 4910 | } |
| 4911 | if (!utils.isObject(proto2)) { |
| 4912 | proto2 = globalObject[ctorRegistrySymbol]["URLSearchParams"].prototype; |
| 4913 | } |
| 4914 | return Object.create(proto2); |
| 4915 | } |
| 4916 | exports2.create = (globalObject, constructorArgs, privateData) => { |
| 4917 | const wrapper = makeWrapper(globalObject); |
| 4918 | return exports2.setup(wrapper, globalObject, constructorArgs, privateData); |
no test coverage detected
searching dependent graphs…