We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
The proposal is at stage 4 now. here is the spec: https://github.com/tc39/proposal-object-values-entries
here is the definition skeleton:
interface ObjectConstructor { keys(o: any): string[]; values<T>(o: { [s: string]: T }): T[]; values(o: any): any[]; entries<T>(o: { [s: string]: T }): [string, T][]; entries(o: any): [string, any][]; }
The proposal is at stage 4 now. here is the spec: https://github.com/tc39/proposal-object-values-entries
here is the definition skeleton: