You're Invited:Meet the Socket Team at BlackHat and DEF CON in Las Vegas, Aug 4-6.RSVP
Socket
Book a DemoInstallSign in
Socket

array-remove-item

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

array-remove-item

Remove item from array

0.1.2
latest
Source
npm
Version published
Maintainers
1
Created
Source

remove item from array

XO code style

Just a simple function to remove an item from an Array. Works well in both, the browser & node.

install

npm i -S array-remove-item

and use it

import removeItemFromArray from 'array-remove-item'
// OR
const removeItemFromArray = require('array-remove-item')

const abcde = removeItemFromArray(['a', 'b', 'b', 'c', 'd', 'e'], 1)
console.log(abcde) // ['a', 'b', 'c', 'd', 'e']

behavior

  • removeItemFromArray is a pure function, it does not mutate the provided array.
  • returns the same array if
    • the position provided is not a number.
    • no position is provided
    • the position is out of the range of the array (grater than arr.length or less than 0)

FAQ

Keywords

array

FAQs

Package last updated on 07 Sep 2016

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