Skip to content

fgnass/materialize

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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

About

Tiny utility to turn a list into an object

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published