UNPKG

imma

Version:

A collection of functions for dealing with native arrays and objects immutably

4 lines (3 loc) 121 B
'use strict' const remove = module.exports = (array, index) => array.slice(0, index).concat(array.slice(index + 1))