UNPKG

lenye_base

Version:

基础方法

9 lines (7 loc) 197 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;