mirror of
https://github.com/swc-project/swc.git
synced 2024-12-20 20:22:26 +03:00
bbaf619f63
swc_bundler: - [x] Fix wrapped esms. (denoland/deno#9307) - [x] Make test secure.
35 lines
1.2 KiB
TypeScript
35 lines
1.2 KiB
TypeScript
// Loaded from https://deno.land/x/ramda@v0.27.2/source/dropLast.js
|
|
|
|
|
|
import _curry2 from './internal/_curry2.js';
|
|
import _dispatchable from './internal/_dispatchable.js';
|
|
import _dropLast from './internal/_dropLast.js';
|
|
import _xdropLast from './internal/_xdropLast.js';
|
|
|
|
|
|
/**
|
|
* Returns a list containing all but the last `n` elements of the given `list`.
|
|
*
|
|
* Acts as a transducer if a transformer is given in list position.
|
|
*
|
|
* @func
|
|
* @memberOf R
|
|
* @since v0.16.0
|
|
* @category List
|
|
* @sig Number -> [a] -> [a]
|
|
* @sig Number -> String -> String
|
|
* @param {Number} n The number of elements of `list` to skip.
|
|
* @param {Array} list The list of elements to consider.
|
|
* @return {Array} A copy of the list with only the first `list.length - n` elements
|
|
* @see R.takeLast, R.drop, R.dropWhile, R.dropLastWhile
|
|
* @example
|
|
*
|
|
* R.dropLast(1, ['foo', 'bar', 'baz']); //=> ['foo', 'bar']
|
|
* R.dropLast(2, ['foo', 'bar', 'baz']); //=> ['foo']
|
|
* R.dropLast(3, ['foo', 'bar', 'baz']); //=> []
|
|
* R.dropLast(4, ['foo', 'bar', 'baz']); //=> []
|
|
* R.dropLast(3, 'ramda'); //=> 'ra'
|
|
*/
|
|
var dropLast = _curry2(_dispatchable([], _xdropLast, _dropLast));
|
|
export default dropLast;
|