UNPKG

bbo

Version:

bbo is a utility library of zero dependencies for javascript.

9 lines (7 loc) 195 B
/** * Remove the element specified by parameter 2 in parameter 1 and return Boolean */ function removeAt(target, index) { return !!target.splice(index, 1).length; } export default removeAt;