mirror of
https://github.com/swc-project/swc.git
synced 2024-12-21 04:32:01 +03:00
32 lines
932 B
TypeScript
32 lines
932 B
TypeScript
|
// Loaded from https://deno.land/x/ramda@v0.27.2/source/append.js
|
||
|
|
||
|
|
||
|
import _concat from './internal/_concat.js';
|
||
|
import _curry2 from './internal/_curry2.js';
|
||
|
|
||
|
|
||
|
/**
|
||
|
* Returns a new list containing the contents of the given list, followed by
|
||
|
* the given element.
|
||
|
*
|
||
|
* @func
|
||
|
* @memberOf R
|
||
|
* @since v0.1.0
|
||
|
* @category List
|
||
|
* @sig a -> [a] -> [a]
|
||
|
* @param {*} el The element to add to the end of the new list.
|
||
|
* @param {Array} list The list of elements to add a new item to.
|
||
|
* list.
|
||
|
* @return {Array} A new list containing the elements of the old list followed by `el`.
|
||
|
* @see R.prepend
|
||
|
* @example
|
||
|
*
|
||
|
* R.append('tests', ['write', 'more']); //=> ['write', 'more', 'tests']
|
||
|
* R.append('tests', []); //=> ['tests']
|
||
|
* R.append(['tests'], ['write', 'more']); //=> ['write', 'more', ['tests']]
|
||
|
*/
|
||
|
var append = _curry2(function append(el, list) {
|
||
|
return _concat(list, [el]);
|
||
|
});
|
||
|
export default append;
|