update
This commit is contained in:
parent
d9becc67b6
commit
9308795b8b
964 changed files with 104265 additions and 16 deletions
20
node_modules/ramda/src/F.js
generated
vendored
Normal file
20
node_modules/ramda/src/F.js
generated
vendored
Normal file
|
@ -0,0 +1,20 @@
|
|||
/**
|
||||
* A function that always returns `false`. Any passed in parameters are ignored.
|
||||
*
|
||||
* @func
|
||||
* @memberOf R
|
||||
* @since v0.9.0
|
||||
* @category Function
|
||||
* @sig * -> Boolean
|
||||
* @param {*}
|
||||
* @return {Boolean}
|
||||
* @see R.T
|
||||
* @example
|
||||
*
|
||||
* R.F(); //=> false
|
||||
*/
|
||||
var F = function () {
|
||||
return false;
|
||||
};
|
||||
|
||||
module.exports = F;
|
Loading…
Add table
Add a link
Reference in a new issue