Object.values.js 98 B

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