Security News
GitHub Removes Malicious Pull Requests Targeting Open Source Repositories
GitHub removed 27 malicious pull requests attempting to inject harmful code across multiple open source repositories, in another round of low-effort attacks.
array-back
Advanced tools
The array-back npm package is designed to ensure that any value provided to it is returned as an array. This can be useful when you are not sure if a function will receive an argument as a single value or an array of values. It helps to normalize the input for further processing.
Convert a non-array value to an array
This feature takes a single value and wraps it in an array. If the value is already an array, it returns the array unchanged.
[].concat(arrayBack(value))
Flatten nested arrays
This feature can be used to flatten nested arrays into a single-level array.
arrayBack([1, [2, [3]]])
Ignore empty slots in sparse arrays
This feature allows the conversion of sparse arrays into compact arrays without empty slots.
arrayBack(new Array(5))
Lodash is a comprehensive utility library that provides a wide range of functions for working with arrays, objects, strings, etc. It includes methods like _.toArray which can convert values to arrays, similar to array-back, but it also offers a much larger set of utilities for different purposes.
Arrify is a minimalistic package that converts a non-array value into an array. It is similar to array-back in its basic functionality but does not offer additional features like flattening nested arrays or handling sparse arrays.
#array-back Guarantees an array back.
> arrayify = require("array-back")
> arrayify(0)
[ 0 ]
> arrayify("hi")
[ 'hi' ]
> arrayify(null)
[ null ]
> arrayify(undefined)
[]
> arrayify({ one: 1 })
[ { one: 1 } ]
> arrayify([ "already", "an", "array" ])
[ 'already', 'an', 'array' ]
> function f(){ return arrayify(arguments); }
> f(1, 2, 3)
[ 1, 2, 3 ]
© 2015 Lloyd Brookes <75pound@gmail.com>.
FAQs
Guarantees an array back
The npm package array-back receives a total of 2,198,558 weekly downloads. As such, array-back popularity was classified as popular.
We found that array-back demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
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.
Security News
GitHub removed 27 malicious pull requests attempting to inject harmful code across multiple open source repositories, in another round of low-effort attacks.
Security News
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.
Security News
Node.js will be enforcing stricter semver-major PR policies a month before major releases to enhance stability and ensure reliable release candidates.