Socket
Socket
Sign inDemoInstall

array-mapcat

Package Overview
Dependencies
4
Maintainers
1
Versions
6
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    array-mapcat

Curried function deriving new array values by applying provided function to each item/index of provided array then applying `concat` to the results. Fast and compatible with modern or old browsers.


Version published
Maintainers
1
Install size
46.3 kB
Created

Changelog

Source

0.1.5 - 2016-03-01

Fixed

  • Update outdated dependencies.

Readme

Source

array-mapcat

Curried function deriving new array values by applying provided function to each item/index of provided array then applying concat to the results. Fast and compatible with modern or old browsers.

Build Status Code Climate js-standard-style

npm install array-mapcat --save

You can also use Duo, Bower or download the files manually.

npm stats

npm NPM downloads David

Overview

  • Similar to [].concat.apply([], [].map()) but more functional and compositionally friendly.
  • Optionally, a dot-notation formatted string may be provided for item property access.

API Example

Basic
var mapcat = require('array-mapcat')
var splitword = (sentance) => sentance.split(/\s+/)
var sentences = [ 'two birds', 'three green peas' ]

mapcat(splitword, sentences)
//=> ['two', 'birds', 'three', 'green', 'peas']
Dot-notation object access
var mapcat = require('array-mapcat')
var listmodel = [
  { list: [1, 2, 3] },
  { list: [4, 5, 6] },
  { list: [7, 8, 9] }
]

mapcat('list', listmodel)
//=> [1, 2, 3, 4, 5, 6, 7, 8, 9]
Pointfree Style
var mapcat = require('array-mapcat')
var listmodel = Promise.resolve([
  { list: [1, 2, 3] },
  { list: [4, 5, 6] },
  { list: [7, 8, 9] }
])

listmodel.then(mapcat('list'))
//=> [1, 2, 3, 4, 5, 6, 7, 8, 9]

API

mapcat(fn, list)

arguments
  • fn (Function|String) Function to apply to each item.
  • list (array) Array to iterate over.
returns
  • (array) Array resulting from applying provided function fn to each item of list then applying concat to the results.

Inspiration

Alternatives

Contributing

SEE: contributing.md

Licenses

GitHub license

Keywords

FAQs

Last updated on 02 Mar 2016

Did you know?

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

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc