UNPKG

eris-keys

Version:

a JavaScript client library for eris-keys

25 lines (22 loc) 654 B
var _concat = require('./internal/_concat'); var _curry2 = require('./internal/_curry2'); /** * Returns a new list with the given element at the front, followed by the * contents of the list. * * @func * @memberOf R * @since v0.1.0 * @category List * @sig a -> [a] -> [a] * @param {*} el The item to add to the head of the output list. * @param {Array} list The array to add to the tail of the output list. * @return {Array} A new array. * @see R.append * @example * * R.prepend('fee', ['fi', 'fo', 'fum']); //=> ['fee', 'fi', 'fo', 'fum'] */ module.exports = _curry2(function prepend(el, list) { return _concat([el], list); });