New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

materialize

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

materialize

Turn a list into an object

latest
Source
npmnpm
Version
1.0.0
Version published
Weekly downloads
448
-23.42%
Maintainers
1
Weekly downloads
 
Created
Source

Build Status

Tiny utility to turn a list into an object

Example:

var materialize = require('materialize');

var props = [
  { name: 'foo', value: 23 },
  { name: 'bar', value: 42 }
];

console.log(materialize(props));

Output:

{ foo: 32, bar: 42 }

By default materialize() looks for a name and a value property. You may specify different names like this:

var props = [
  { property: 'foo', val: 23 },
  { property: 'bar', val: 42 }
];

var obj = materialize(props, 'property', 'val');

License

MIT

Keywords

array-to-object

FAQs

Package last updated on 01 Jun 2014

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