Socket
Socket
Sign inDemoInstall

@cryptoscamdb/array-object-dictionary

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@cryptoscamdb/array-object-dictionary

A simple NPM package to map an array of objects to an object of unique values


Version published
Weekly downloads
1
decreased by-50%
Maintainers
1
Weekly downloads
 
Created
Source

array-object-dictionary

A simple NPM package to map an array of objects to an object of unique values.

Usage

npm i -P @cryptoscamdb/array-object-dictionary

Example

import dictionary from '@cryptoscamdb/array-object-dictionary';

const cats = [
    {
        name: 'Kitty',
	    age: 4
    },
    {
        name: 'Tiger',
	    age: 4
    },
    {
        name: 'Misty',
	    age: 6
    }
];

console.log(dictionary(cats));

Which will output the following dictionary object:

{
    name: {
        Kitty: [
            {
                name: 'Kitty',
                age: 4
            }
        ],
        Tiger: [
            {
                name: 'Tiger',
                age: 4
            }
        ],
        Misty: [
            {
                name: 'Misty',
                age: 6
            }
        ]
    },
    age: {
        4: [
            {
                name: 'Kitty',
                age: 4
            },
            {
                name: 'Tiger',
                age: 4
            }
        ],
        6: [
            {
                name: 'Misty',
                age: 6
            }
        ]
    }
};

Notice how both Kitty and Tiger share the same age (4), and that's also how they're mapped in the dictionary.

Keywords

FAQs

Package last updated on 30 Sep 2018

Did you know?

Socket

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
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc