forked from waja/action-debian-package
31 lines
958 B
JavaScript
31 lines
958 B
JavaScript
import _curry3 from "./internal/_curry3.js";
|
|
/**
|
|
* Removes the sub-list of `list` starting at index `start` and containing
|
|
* `count` elements. _Note that this is not destructive_: it returns a copy of
|
|
* the list with the changes.
|
|
* <small>No lists have been harmed in the application of this function.</small>
|
|
*
|
|
* @func
|
|
* @memberOf R
|
|
* @since v0.2.2
|
|
* @category List
|
|
* @sig Number -> Number -> [a] -> [a]
|
|
* @param {Number} start The position to start removing elements
|
|
* @param {Number} count The number of elements to remove
|
|
* @param {Array} list The list to remove from
|
|
* @return {Array} A new Array with `count` elements from `start` removed.
|
|
* @see R.without
|
|
* @example
|
|
*
|
|
* R.remove(2, 3, [1,2,3,4,5,6,7,8]); //=> [1,2,6,7,8]
|
|
*/
|
|
|
|
var remove =
|
|
/*#__PURE__*/
|
|
_curry3(function remove(start, count, list) {
|
|
var result = Array.prototype.slice.call(list, 0);
|
|
result.splice(start, count);
|
|
return result;
|
|
});
|
|
|
|
export default remove; |