LibJS: Implement Object.prototype.propertyIsEnumerable

Spec: https://tc39.es/ecma262/#sec-object.prototype.propertyisenumerable

This is used by core-js, which is used by frameworks such as Vue.
This commit is contained in:
Luke 2020-12-24 17:51:28 +00:00 committed by Andreas Kling
commit 200c7572b7
Notes: sideshowbarker 2024-07-19 00:37:58 +09:00
4 changed files with 32 additions and 0 deletions

View file

@ -176,6 +176,7 @@ namespace JS {
P(pop) \
P(pow) \
P(preventExtensions) \
P(propertyIsEnumerable) \
P(prototype) \
P(push) \
P(random) \