ramda-adjunct
Version:
Ramda Adjunct is the most popular and most comprehensive set of utilities for use with Ramda, providing a variety of useful, well tested functions with excellent documentation.
25 lines (22 loc) • 653 B
JavaScript
exports.__esModule = true;
exports["default"] = void 0;
var _ramda = require("ramda");
/**
* Creates a list from arguments.
*
* @func list
* @memberOf RA
* @since {@link https://char0n.github.io/ramda-adjunct/1.1.0|v1.1.0}
* @category List
* @sig a... -> [a...]
* @param {...*} items The items of the feature list
* @return {Array} New list created from items
* @see {@link https://github.com/ramda/ramda/wiki/Cookbook#create-a-list-function|Ramda Cookbook}
* @example
*
* RA.list('a', 'b', 'c'); //=> ['a', 'b', 'c']
*/
var list = (0, _ramda.unapply)(_ramda.identity);
var _default = list;
exports["default"] = _default;
;