Sha256: 2c5f6c0e684ea47d99864e4cbc5ca8ce7c68133db3a578f5eecf9658a355b0ef
Contents?: true
Size: 205 Bytes
Versions: 69
Compression:
Stored size: 205 Bytes
Contents
'use strict'; function arrayRemove(array, value) { var index = array.indexOf(value); if (index !== -1) { array.splice(index, 1); } return array; } module.exports = arrayRemove;
Version data entries
69 entries across 69 versions & 2 rubygems