We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 902d4f8 commit c77b93aCopy full SHA for c77b93a
1 file changed
modules/_iter-define.js
@@ -30,7 +30,7 @@ module.exports = function (Base, NAME, Constructor, next, DEFAULT, IS_SET, FORCE
30
var VALUES_BUG = false;
31
var proto = Base.prototype;
32
var $native = proto[ITERATOR] || proto[FF_ITERATOR] || DEFAULT && proto[DEFAULT];
33
- var $default = (!BUGGY && $native) || getMethod(DEFAULT);
+ var $default = $native || getMethod(DEFAULT);
34
var $entries = DEFAULT ? !DEF_VALUES ? $default : getMethod('entries') : undefined;
35
var $anyNative = NAME == 'Array' ? proto.entries || $native : $native;
36
var methods, key, IteratorPrototype;
0 commit comments