blob: 3c0862ee62f072c084b3664555b42eac8c45622e [file] [log] [blame]
Leo Repp58b9f112021-11-22 11:57:47 +01001/**
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 */
13function noop() {
14 // No operation performed.
15}
16
17module.exports = noop;