mirror of
https://github.com/swc-project/swc.git
synced 2024-12-25 22:56:11 +03:00
33 lines
1013 B
TypeScript
33 lines
1013 B
TypeScript
|
// Loaded from https://deno.land/x/ramda@v0.27.2/source/remove.js
|
||
|
|
||
|
|
||
|
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 = _curry3(function remove(start, count, list) {
|
||
|
var result = Array.prototype.slice.call(list, 0);
|
||
|
result.splice(start, count);
|
||
|
return result;
|
||
|
});
|
||
|
export default remove;
|