UNPKG

bbo

Version:

bbo is a utility library of zero dependencies for javascript.

11 lines (8 loc) 212 B
'use strict'; /** * Remove the element specified by parameter 2 in parameter 1 and return Boolean */ function removeAt(target, index) { return !!target.splice(index, 1).length; } module.exports = removeAt;