update
This commit is contained in:
parent
d9becc67b6
commit
9308795b8b
964 changed files with 104265 additions and 16 deletions
33
node_modules/ramda/src/always.js
generated
vendored
Normal file
33
node_modules/ramda/src/always.js
generated
vendored
Normal file
|
@ -0,0 +1,33 @@
|
|||
var _curry1 =
|
||||
/*#__PURE__*/
|
||||
require("./internal/_curry1");
|
||||
/**
|
||||
* Returns a function that always returns the given value. Note that for
|
||||
* non-primitives the value returned is a reference to the original value.
|
||||
*
|
||||
* This function is known as `const`, `constant`, or `K` (for K combinator) in
|
||||
* other languages and libraries.
|
||||
*
|
||||
* @func
|
||||
* @memberOf R
|
||||
* @since v0.1.0
|
||||
* @category Function
|
||||
* @sig a -> (* -> a)
|
||||
* @param {*} val The value to wrap in a function
|
||||
* @return {Function} A Function :: * -> val.
|
||||
* @example
|
||||
*
|
||||
* const t = R.always('Tee');
|
||||
* t(); //=> 'Tee'
|
||||
*/
|
||||
|
||||
|
||||
var always =
|
||||
/*#__PURE__*/
|
||||
_curry1(function always(val) {
|
||||
return function () {
|
||||
return val;
|
||||
};
|
||||
});
|
||||
|
||||
module.exports = always;
|
Loading…
Add table
Add a link
Reference in a new issue