Skip to content

Commit

Permalink
Ensure Map.prototype[Symbol.iterator] === Map.prototype.entries is …
Browse files Browse the repository at this point in the history
…true.
  • Loading branch information
ljharb committed Jun 1, 2015
1 parent cee098d commit 25ff9fe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion es6-shim.js
Original file line number Diff line number Diff line change
Expand Up @@ -2242,7 +2242,7 @@
}
}
});
addIterator(Map.prototype, function () { return this.entries(); });
addIterator(Map.prototype, Map.prototype.entries);

return Map;
}()),
Expand Down

0 comments on commit 25ff9fe

Please sign in to comment.