Object.values / Object.entries

Specification
Proposal repo

Built-ins signatures

class Object {
  static entries(object: Object): Array<[string, mixed]>;
  static values(object: any): Array<mixed>;
}

Entry points

core-js/proposals/object-values-entries