Socket
Book a DemoInstallSign in
Socket

@betafcc/map-util

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@betafcc/map-util

Micro util for mapping on Maps and plain Objects

0.2.0
latest
npmnpm
Version published
Maintainers
1
Created
Source

map-util

Micro util for manipulation of Map-Like objects

Install

npm install @betafcc/map-util

Basic Usage

const {fmap, filter, to, iter} = require('@betafcc/map-util');


const dict = { a: 1, b: { ba: 2, bb: 3, bc: { bca: 4 } }, c: 5 }

const mapy =  to.map( dict )
// Map {
//  'a' => 1,
//  'b' => Map {
//          'ba' => 2,
//          'bb' => 3,
//          'bc' => Map { 'bca' => 4 } },
//  'c' => 5 }

const lispy = to.array ( dict )
 // [ [ 'a', 1 ],
 //   [ 'b', [ [ 'ba', 2 ],
 //            [ 'bb', 3 ],
 //            [ 'bc', [ ['bca', 4] ] ] ] ],
 //   [ 'c' , 5 ] ]


to.object( mapy )
to.object( lispy )
to.object( to.array( mapy ) )
to.object( to.map( lispy ) )
// { a: 1, b: { ba: 2, bb: 3, bc: { bca: 4 } }, c: 5 }

fmap  ( v => v**2 ) ( dict )
// { a: 1, b: { ba: 4, bb: 9, bc: { bca: 16 } }, c: 25 }
fmap  ( v => v**2 ) ( mapy )
// Map {
//  'a' => 1,
//  'b' => Map {
//          'ba' => 4,
//          'bb' => 9,
//          'bc' => Map { 'bca' => 16 } },
//  'c' => 25 }

fmap.key  ( k => k.toUpperCase() ) ( dict )
// { A: 1, B: { BA: 2, BB: 3, BC: { BCA: 4 } }, C: 5 }


filter ( v => v % 2 === 0 ) ( dict )
// { b: { ba: 2, bc: { bca: 4 } } }

filter ( (v, k) => k.length <= 1) ( dict )
//  { a: 1, b: { bc: {} },  c: 5 }
// note 'bc' still here, because its filtering values, not keys

filter ( (v, k) => k.length > 1) ( dict ) // filter WITH key
// { b: { ba: 2, bb: 3, bc: { bca: 4 } } }

filter.key ( (k, v) => k.length > 1) ( dict ) // filter BY key
// {}


const levelDict = {
  a: 1,
  b: {
    c: 2,
    d: {
      e: 3,
      f: 3
    },
    g: 2,
    h: {
      i: 3
    }
  },
  d: 1
};

// Deep iterators:
// Note that many Map-Like are not guaranteed
// to be ordered (like plainObjects)
[...iter.df(levelDict)]
[ 1, 2, 3, 3, 2, 3, 1 ]

[...iter.bf.key(levelDict)]
[ 'a', 'b', 'd', 'c', 'd', 'g', 'h', 'e', 'f', 'i' ]

[...iter.levels(levelDict)]
[ [ 1, 1 ], [ 2, 2 ], [ 3, 3, 3 ] ]

Full Api so far:


MapLike = Map | PlainObject | MapShapedArray

mapUtil
    .to.object(MapLike)
    .to.map(MapLike)
    .to.array(MapLike)

    .fmap(v => ...)(MapLike)
    .fmap((v, k) => ...)(MapLike)
    .fmap.key(k => ...)(MapLike)
    .fmap.shallow(([k, v]) => ...)(MapLike)

    .filter(v => ...)(MapLike)
    .filter((v, k) => ...)(MapLike)
    .filter.key(k => ...)(MapLike)
    .filter.key((k, v) => ...)(MapLike)

    .iter.df(MapLike)
    .iter.df.key(MapLike)
    .iter.bf(MapLike)
    .iter.bf.key(MapLike)
    .iter.levels(MapLike)
    .iter.levels.key(MapLike)

TODO

- [X] Basic
- [ ] Better Tests
- [ ] Make dist Bundle
    - [ ] Port to ES7+ or TypeScript ?
    - [ ] With or without browser-polyfills ?
- [ ] Features:
    - [ ] addType :: conf -> MapUtil
    - [ ] equivalent :: MapLike a, MapLike b => a -> b -> bool
        Check if two MapLike are deep-equivalent
    - [ ] from :: conf -> MapUtil conf
    - [ ] of   :: MapUtil a => b -> a
    - [ ] polymorphic utils, to handle eg. { a: [ ['b', 1] ] }
        - [ ] normalize
        - [ ] fmap
        - [ ] filter
- [ ] Expose strict functions (eg. object.fmap)
    - [ ] To API
    - [ ] To specific bundles

Keywords

util

FAQs

Package last updated on 30 Jun 2017

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

About

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.

  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc

U.S. Patent No. 12,346,443 & 12,314,394. Other pending.