You're Invited:Meet the Socket Team at BlackHat and DEF CON in Las Vegas, Aug 7-8.RSVP
Socket
Socket
Sign inDemoInstall

array-flatten

Package Overview
Dependencies
Maintainers
1
Versions
12
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

array-flatten

Flatten nested arrays


Version published
Weekly downloads
34M
decreased by-0.09%
Maintainers
1
Install size
20.4 kB
Created
Weekly downloads
 

Package description

What is array-flatten?

The array-flatten npm package is a utility for flattening nested arrays into a single level array. It is useful for handling operations where you need to process or manipulate data that may be structured in multiple layers of arrays.

What are array-flatten's main functionalities?

Flatten nested arrays

This feature allows you to flatten a nested array of any depth into a single level array. The code sample demonstrates how to use the array-flatten package to flatten an array.

[].concat.apply([], array)

Other packages similar to array-flatten

Readme

Source

Array Flatten

NPM version NPM downloads Build status Test coverage Bundle size

Flatten nested arrays.

Installation

npm install array-flatten --save

Usage

import { flatten } from "array-flatten";

flatten([1, [2, [3, [4, [5], 6], 7], 8], 9]);
//=> [1, 2, 3, 4, 5, 6, 7, 8, 9]

(function() {
  flatten(arguments); //=> [1, 2, 3]
})(1, [2, 3]);

License

MIT

Keywords

FAQs

Package last updated on 21 Nov 2019

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

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

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc