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:
323 bytes
|
Rev | Line | |
---|
[d24f17c] | 1 | /**
|
---|
| 2 | * A function that always returns `false`. Any passed in parameters are ignored.
|
---|
| 3 | *
|
---|
| 4 | * @func
|
---|
| 5 | * @memberOf R
|
---|
| 6 | * @since v0.9.0
|
---|
| 7 | * @category Function
|
---|
| 8 | * @sig * -> Boolean
|
---|
| 9 | * @param {*}
|
---|
| 10 | * @return {Boolean}
|
---|
| 11 | * @see R.T
|
---|
| 12 | * @example
|
---|
| 13 | *
|
---|
| 14 | * R.F(); //=> false
|
---|
| 15 | */
|
---|
| 16 | var F = function () {
|
---|
| 17 | return false;
|
---|
| 18 | };
|
---|
| 19 |
|
---|
| 20 | export default F; |
---|
Note:
See
TracBrowser
for help on using the repository browser.