1 var baseUnset = require(
'./_baseUnset'),
2 isIndex = require(
'./_isIndex');
5 var arrayProto = Array.prototype;
8 var splice = arrayProto.splice;
19 function basePullAt(array, indexes) {
20 var length = array ? indexes.length : 0,
21 lastIndex = length - 1;
24 var index = indexes[length];
25 if (length == lastIndex || index !== previous) {
28 splice.call(array, index, 1);
30 baseUnset(array, index);
37 module.exports = basePullAt;