source: node_modules/ramda-adjunct/lib/list.js

main
Last change on this file was d24f17c, checked in by Aleksandar Panovski <apano77@…>, 15 months ago

Initial commit

  • Property mode set to 100644
File size: 651 bytes
Line 
1"use strict";
2
3exports.__esModule = true;
4exports["default"] = void 0;
5var _ramda = require("ramda");
6/**
7 * Creates a list from arguments.
8 *
9 * @func list
10 * @memberOf RA
11 * @since {@link https://char0n.github.io/ramda-adjunct/1.1.0|v1.1.0}
12 * @category List
13 * @sig a... -> [a...]
14 * @param {...*} items The items of the feature list
15 * @return {Array} New list created from items
16 * @see {@link https://github.com/ramda/ramda/wiki/Cookbook#create-a-list-function|Ramda Cookbook}
17 * @example
18 *
19 * RA.list('a', 'b', 'c'); //=> ['a', 'b', 'c']
20 */
21var list = (0, _ramda.unapply)(_ramda.identity);
22var _default = list;
23exports["default"] = _default;
Note: See TracBrowser for help on using the repository browser.