Skip to content

webdacjs/reduce-array-object

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

reduce-array-object

reduce-array-object is a small module to reduce arrays to objects supporting customized parameters. You can pass a numeric array or an array of objects and define what parater to use as key or value (default key: index, default value: item)

Install

You can install with [npm]:

$ npm install --save reduce-array-object

Usage

Please check the index.test.js to get a full list of examples but a typical use case in the following:

// Array of objects with country data.

const countries = [
  { name: 'Colombia', code: 'co', area: 1197411 },
  { name: 'Argentina', code: 'ar', area: 2766890 },
  { name: 'Canada', code: 'ca', area: 9984670 },
  { name: 'Brasil', code: 'br', area: 8511965 }
]

// Importing this module
const arrObjReducer = require('reduce-array-object')

// Reduce using the country code as key and the name as value.
const reduced = arrObjReducer((countries, {key: 'code', value: 'name'}))

// output: { co: 'Colombia', ar: 'Argentina', ca: 'Canada', br: 'Brasil' }

In conclusion the first parameter is the array to reduce and the second parameter is a configuration object where you can optionally define the key and value parameters to be used in the resulting object.

Running tests

You can run the tests and check the functionality of this module using:

$ npm test

License

Copyright © 2020, Juan Convers. Released under the MIT License.

About

Small module to reduce arrays to objects supporting customized parameters.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published