Log in Register Dashboard Temp Share Shortlinks Frames API

cody - HTMLify profile

cody's Profile Picture

cody

4270 Files

634841 Views

Latest files of /cody/Khushigupta8/Hotel-Management-Webpage/node_modules/array-flatten

README.md cody/Khushigupta8/Hotel-Management-Webpage/node_modules/array-flatten/README.md
141 Views
0 Comments
# Array Flatten

[![NPM version][npm-image]][npm-url]
[![NPM downloads][downloads-image]][downloads-url]
[![Build status][travis-image]][travis-url]
[![Test coverage][coveralls-image]][coveralls-url]

> Flatten an array of nested arrays into a single flat array. Accepts an optional depth.
LICENSE cody/Khushigupta8/Hotel-Management-Webpage/node_modules/array-flatten/LICENSE
194 Views
0 Comments
Media file
package.json cody/Khushigupta8/Hotel-Management-Webpage/node_modules/array-flatten/package.json
108 Views
0 Comments
{
"name": "array-flatten",
"version": "1.1.1",
"description": "Flatten an array of nested arrays into a single flat array",
"main": "array-flatten.js",
"files": [
"array-flatten.js",
"LICENSE"
array-flatten.js cody/Khushigupta8/Hotel-Management-Webpage/node_modules/array-flatten/array-flatten.js
126 Views
0 Comments
'use strict'

/**
* Expose `arrayFlatten`.
*/
module.exports = arrayFlatten

/**