test-action-debian-package/node_modules/ramda/es/head.js

27 lines
553 B
JavaScript
Raw Normal View History

2020-03-26 14:37:35 +00:00
import nth from "./nth.js";
/**
* Returns the first element of the given list or string. In some libraries
* this function is named `first`.
*
* @func
* @memberOf R
* @since v0.1.0
* @category List
* @sig [a] -> a | Undefined
* @sig String -> String
* @param {Array|String} list
* @return {*}
* @see R.tail, R.init, R.last
* @example
*
* R.head(['fi', 'fo', 'fum']); //=> 'fi'
* R.head([]); //=> undefined
*
* R.head('abc'); //=> 'a'
* R.head(''); //=> ''
*/
var head =
/*#__PURE__*/
nth(0);
export default head;