Security News
GitHub Removes Malicious Pull Requests Targeting Open Source Repositories
GitHub removed 27 malicious pull requests attempting to inject harmful code across multiple open source repositories, in another round of low-effort attacks.
reduce-array-object
Advanced tools
Small module to reduce arrays to objects supporting customized parameters.
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)
You can install with [npm]:
$ npm install --save reduce-array-object
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.
You can run the tests and check the functionality of this module using:
$ npm test
Copyright © 2020, Juan Convers. Released under the MIT License.
FAQs
Small module to reduce arrays to objects supporting customized parameters.
We found that reduce-array-object demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
GitHub removed 27 malicious pull requests attempting to inject harmful code across multiple open source repositories, in another round of low-effort attacks.
Security News
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.
Security News
Node.js will be enforcing stricter semver-major PR policies a month before major releases to enhance stability and ensure reliable release candidates.