Socket
Socket
Sign inDemoInstall

array-to-objecthash

Package Overview
Dependencies
0
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    array-to-objecthash

Convert array to object hash based on specific key


Version published
Weekly downloads
4
decreased by-77.78%
Maintainers
1
Created
Weekly downloads
 

Readme

Source

Array to Object

Converts an Array of objects to an Object hash

Why?

It's useful when you have an array of objects which you wish to normalize into a single object that can be easily accessed using O(1) hash map.

Installation

Bold people do:

yarn add array-to-objecthash

The rest can use the mundane:

npm install --save array-to-objecthash

Usage

If you have the following array of objects:

  const arr = [
    {
      key: 'key_one',
      value: 'some value one'
    },
    {
      key: 'key_two',
      value: 'some value two'
    }
  ]

You can convert it to an Object hash based on a key of your choosing in the top level object

  const convertArrayToHash = require('array-to-objecthash')
  const obj = convertArrayToHash(arr, 'key')

The result is:

{ 
  key_one: { key: 'key_one', value: 'some value one' },
  key_two: { key: 'key_two', value: 'some value two' }
}

Tests

Project tests:

npm run test

Project linting:

npm run lint

Coverage

npm run test:coverage

Commit

The project uses the commitizen tool for standardizing changelog style commit messages so you should follow it as so:

git add .           # add files to staging
npm run commit      # use the wizard for the commit message

FAQs

Last updated on 02 Feb 2017

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc