Last change
on this file since eed0bf8 was 6a3a178, checked in by Ema <ema_spirova@…>, 3 years ago |
initial commit
|
-
Property mode
set to
100644
|
File size:
280 bytes
|
Rev | Line | |
---|
[6a3a178] | 1 | /**
|
---|
| 2 | * This method returns `false`.
|
---|
| 3 | *
|
---|
| 4 | * @static
|
---|
| 5 | * @memberOf _
|
---|
| 6 | * @since 4.13.0
|
---|
| 7 | * @category Util
|
---|
| 8 | * @returns {boolean} Returns `false`.
|
---|
| 9 | * @example
|
---|
| 10 | *
|
---|
| 11 | * _.times(2, _.stubFalse);
|
---|
| 12 | * // => [false, false]
|
---|
| 13 | */
|
---|
| 14 | function stubFalse() {
|
---|
| 15 | return false;
|
---|
| 16 | }
|
---|
| 17 |
|
---|
| 18 | module.exports = stubFalse;
|
---|
Note:
See
TracBrowser
for help on using the repository browser.