15.4.12 • Published 5 years ago

@the-/util-array v15.4.12

Weekly downloads
1,629
License
MIT
Repository
github
Last release
5 years ago

@the-/util-array

npm Version

Array utility of the-framework

Installation

$ npm install @the-/util-array --save

Usage

'use strict'

const { keyPathMap, uniqueFilter } = require('@the-/util-array')

async function tryExample() {
  console.log(
    ['foo', 'bar', 'foo'].filter(uniqueFilter()), // => ['foo', 'bar']
  )

  console.log(
    [{ foo: { bar: 10 } }, { foo: { bar: 20 } }].map(keyPathMap('foo.bar')), // => [10,20]
  )
}

tryExample().catch((err) => console.error(err))

API Guide

See API Guide for more detail

License

This software is released under the MIT License.

Links