Object.entries.js 105 B

123
  1. module.exports = function Object_values(obj) {
  2. return Object.keys(obj).map(key => [key, obj[key]]);
  3. };