main
|
Last change
on this file since 2518b3a was d24f17c, checked in by Aleksandar Panovski <apano77@…>, 18 months ago |
|
Initial commit
|
-
Property mode
set to
100644
|
|
File size:
272 bytes
|
| Line | |
|---|
| 1 | /**
|
|---|
| 2 | * This method returns `true`.
|
|---|
| 3 | *
|
|---|
| 4 | * @static
|
|---|
| 5 | * @memberOf _
|
|---|
| 6 | * @since 4.13.0
|
|---|
| 7 | * @category Util
|
|---|
| 8 | * @returns {boolean} Returns `true`.
|
|---|
| 9 | * @example
|
|---|
| 10 | *
|
|---|
| 11 | * _.times(2, _.stubTrue);
|
|---|
| 12 | * // => [true, true]
|
|---|
| 13 | */
|
|---|
| 14 | function stubTrue() {
|
|---|
| 15 | return true;
|
|---|
| 16 | }
|
|---|
| 17 |
|
|---|
| 18 | module.exports = stubTrue;
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.