Skip to content

Commit

Permalink
fix URLSearchParams in IE8- that was broken in the previous release
Browse files Browse the repository at this point in the history
  • Loading branch information
zloirock committed Apr 21, 2022
1 parent 69b0ac7 commit 803c995
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
## Changelog
##### Unreleased
- Fixed `URLSearchParams` in IE8- that was broken in the previous release
- Fixed `__lookupGetter__` entries

##### 3.22.1 - 2022.04.20
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ var getOwnPropertyDescriptor = Object.getOwnPropertyDescriptor;

// Avoid NodeJS experimental warning
var safeGetBuiltIn = function (name) {
if (!DESCRIPTORS) return global(name);
if (!DESCRIPTORS) return global[name];
var descriptor = getOwnPropertyDescriptor(global, name);
return descriptor && descriptor.value;
};
Expand Down

0 comments on commit 803c995

Please sign in to comment.