[Webkit-unassigned] [Bug 160410] New: [ES2016] Implement Object.values

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Mon Aug 1 10:45:56 PDT 2016


https://bugs.webkit.org/show_bug.cgi?id=160410

            Bug ID: 160410
           Summary: [ES2016] Implement Object.values
    Classification: Unclassified
           Product: WebKit
           Version: WebKit Nightly Build
          Hardware: Unspecified
                OS: Unspecified
            Status: NEW
          Severity: Normal
          Priority: P2
         Component: JavaScriptCore
          Assignee: webkit-unassigned at lists.webkit.org
          Reporter: gskachkov at gmail.com

Short example from ES2016 compatibility table:

/////////
var obj = Object.create({ a: "qux", d: "qux" });
obj.a = "foo"; obj.b = "bar"; obj.c = "baz";
var v = Object.values(obj);
return Array.isArray(v) && String(v) === "foo,bar,bad";
///////
See description by following url https://github.com/tc39/proposal-object-values-entries

-- 
You are receiving this mail because:
You are the assignee for the bug.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <https://lists.webkit.org/pipermail/webkit-unassigned/attachments/20160801/6368efb2/attachment.html>


More information about the webkit-unassigned mailing list