Socket
Socket
Sign inDemoInstall

@arr/flatten

Package Overview
Dependencies
0
Maintainers
1
Versions
4
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    @arr/flatten

A tiny (139B) & fast utility to recursively flatten an array of arrays!


Version published
Weekly downloads
1.7K
increased by23.61%
Maintainers
1
Install size
2.51 kB
Created
Weekly downloads
 

Readme

Source

@arr/flatten

Tiny (139B) & fast utility to recursively flatten an array of arrays!

Install

$ npm install --save @arr/flatten

Usage

import flatten from '@arr/flatten';

flatten(['a', ['b', ['c']], 'd', ['e', [['f']]]]);
//=> ['a', 'b', 'c', 'd', 'e', 'f']

API

flatten(arr)

arr

Type: Array
The array to iterate upon.

License

MIT © Luke Edwards

Keywords

FAQs

Last updated on 23 Oct 2019

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