Closed
Bug 1246069
Opened 9 years ago
Closed 9 years ago
Implement Object.getOwnPropertyDescriptors() proposal
Categories
(Core :: JavaScript Engine, defect)
Core
JavaScript Engine
Tracking
()
RESOLVED
DUPLICATE
of bug 1245024
People
(Reporter: 446240525, Unassigned)
References
Details
js> Object.getOwnPropertyDescriptors({a:1,b:2})
({a:{value:1, writable:true, enumerable:true, configurable:true}, b:{value:2, writable:true, enumerable:true, configurable:true}})
Proposal: https://github.com/tc39/proposal-object-getownpropertydescriptors
Already in V8 and JSC.
Updated•9 years ago
|
Status: NEW → RESOLVED
Closed: 9 years ago
Keywords: dev-doc-needed
Resolution: --- → DUPLICATE
Whiteboard: [DocArea=JS]
You need to log in
before you can comment on or make changes to this bug.
Description
•