parro-it / map-array

Map object keys and values into an array.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

map-array

Greenkeeper badge

Map object keys and values into an array

Travis Build Status NPM module NPM downloads

Installation

npm install --save map-array

Usage

  const mapArray = require('map-array');
  const obj = {
    giorgio: 'Bianchi',
    gino: 'Rossi'
  };
  console.log(mapArray(obj, (key, value) => key + ' ' + value));

['giorgio Bianchi', 'gino Rossi']

Related

  • map-obj - Map object keys and values into a new object

License

The MIT License (MIT)

Copyright (c) 2017 parro-it

About

Map object keys and values into an array.

License:MIT License


Languages

Language:JavaScript 100.0%