JSPM

flatten-arguments

1.0.0
  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 6
  • Score
    100M100P100Q30646F
  • License MIT

Fastest, simplest and smallest. Pass `arguments` object or list of arguments and get flattened array.

Package Exports

  • flatten-arguments

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (flatten-arguments) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

flatten-arguments npmjs.com The MIT License

Fastest, simplest and smallest. Pass arguments object or list of arguments and get flattened array.

code climate standard code style travis build status coverage status dependency status

Install

npm i flatten-arguments --save

Usage

For more use-cases see the tests

const flatten = require('flatten-arguments')

function fixture () {
  return flatten(arguments)
}

// passing arguments object directly
fixture(1, [2, 'a'], 3, {foo: 'bar'}) // => [1, 2, 'a', 3, {foo: 'bar'}]

// passing list of arguments
flatten('foo', 123, ['bar', 456], 7) // => ['foo', 123, 'bar', 456, 7]
  • arr-flatten: Recursively flatten an array or arrays. This is the fastest implementation of array flatten. | homepage
  • handle-arguments: Handles given Arguments object - return separatly last argument (commonly callback) and other arguments as Array. Useful in node-style callback flow. Used by hybridify. | homepage
  • is-arguments: Is this an arguments object? It's a harder question than you think. | homepage
  • manage-arguments: Prevents arguments leakage - managing arguments. From Optimization killers by Petka Antonov. | homepage
  • sliced: A faster Node.js alternative to Array.prototype.slice.call(arguments) | homepage

Contributing

Pull requests and stars are always welcome. For bugs and feature requests, please create an issue.
But before doing anything, please read the CONTRIBUTING.md guidelines.

Charlike Make Reagent new message to charlike freenode #charlike

tunnckocore.tk keybase tunnckocore tunnckoCore npm tunnckoCore twitter tunnckoCore github