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