var baseUnset = ,
isIndex = ;
/** Used for built-in method references. */
var arrayProto = ;
/** Built-in value references. */
var splice = arrayProto.;
/**
* The base implementation of `_.pullAt` without support for individual
* indexes or capturing the removed elements.
*
* @private
* @param {Array} array The array to modify.
* @param {number[]} indexes The indexes of elements to remove.
* @returns {Array} Returns `array`.
*/
module.exports = basePullAt;