array-object-flattener

1.1.2 • Public • Published

Object Flattener

With this package you can flatten nested arrays and objects super simple.

Usage 🤱

  • flatten(object, null); default value, returns both keys and values
  • flatten(object, false); returns only values
  • flatten(object, true); returns only keys
const flatten = require('array-object-flattener');
const obj = {
  key1: 'stringValue',
  key2: ['arrayValue', 'arrayValue2'],
  key3: {
    obj1: [
      'objArrayValue',
      {
        obj2: 'Obj3Value1',
        obj3: 'obj4Value2'
      }
    ]
  }
};
 
flatten(obj);        // This will produce an array with all keys and values
flatten(obj, true);  // This will produce an array with all keys
flatten(obj, false); // This will produce an array with all values

Package Sidebar

Install

npm i array-object-flattener

Weekly Downloads

2

Version

1.1.2

License

ISC

Unpacked Size

1.52 kB

Total Files

3

Last publish

Collaborators

  • dea7h