object-arrarify-deep
TypeScript icon, indicating that this package has built-in type declarations

1.0.1 • Public • Published

npm version

object-arrarify-deep

A npm module which converts an ordinary object into an object with various methods which natively are found within an Array,
such as map, filter, find, forEach, and more, all behave similar to the native array version however, instead of index,
it provides key(second param), and index(third param).

This module was mainly made to help you use an object in the same way you would use an array, while saving you the struggle of using complex methods such as reduce, or writing your own for var ..in loops from scratch, and thus achieving the desired Declarative Programming pattern which is arguably preferred by many over the sometimes longer and harder to read Imperative way.

NOTE: the methods are working deeply, recursively, aka, they do get applied into the inner objects recursively, if you wish to get the original shallow behavior, please check the project
which predated, and is depended upon:
https://github.com/vasilevich/object-arrarify

Usage and examples

  • Install.
yarn add object-arrarify-deep
npm install object-arrarify-deep
  • Import/Require Usage
import objectArrayDeepTools from 'object-arrarify-deep';
  • Actual use examples
    • Assume our object is as follows:
    // Declare the object
    var obj = {
        a: 1,
        b: 2,
        c: 3,
        d: "hello",
        e: {a: 2},
    };
    // Apply the objectArrayTools into the object.
    obj=objectArrayDeepTools(obj);  
    • Or for short:
         // Declare the object
    var obj = objectArrayDeepTools({
                                       a: 1,
                                       b: 2,
                                       c: 3,
                                       d: "hello",
                                       e: {a: 2},
                                   });
    • Map usage
         // Declare the object
    var result=obj.map((key,value,index) => {
      return key;
    });
    // result will be: {a:"a",b:"b",c:"c",d:"d","e":"e",...the arrayTools methods}
    • Filter usage
         // Declare the object
    var result=obj.filter((key,value,index) => {
      return key=="a";
    });
    // result will be: {a:"1" ,...the arrayTools methods}
    • toNormalObject usage
         // Declare the object
    var result=obj.toNormalObject();
    // result will be: the original object, without the methods which were applied by the objectArrayTools.
    • Real world use example and the reason this module was created in the first place.
         // Declare the object
    var result=obj
                 // Perform some filtering logic
                 .filter((key,value,index) => {
                         return key=="a";
                     })
                 //  Perform some value mapping logic 
                 .map((key,value,index) => {
                         return key;
                     })
                 // Convert to an ordinary object without the arrayTools methods which might conflict with other object related tools/code.  
                   .toNormalObject();
    // result will be: {a:"a", (NO ARRAYTOOLS METHODS)}

Other examples are omitted becaus the use is pretty much obvious and in par with the usage of ordinary array functions, including find and forEach, feel free to make a pull request with a more detailed readme.

License

The license chosen for this project can be found inside package.json: MIT

Hopefully this module will save you a little bit of time, have fun and best of luck!

Package Sidebar

Install

npm i object-arrarify-deep

Weekly Downloads

0

Version

1.0.1

License

MIT

Unpacked Size

11.8 kB

Total Files

8

Last publish

Collaborators

  • vasilevich