Newer
Older
alert / js / node_modules / lodash / noop.js
@Réz István Réz István on 18 Nov 2021 250 bytes first commit
/**
 * This method returns `undefined`.
 *
 * @static
 * @memberOf _
 * @since 2.3.0
 * @category Util
 * @example
 *
 * _.times(2, _.noop);
 * // => [undefined, undefined]
 */
function noop() {
  // No operation performed.
}

module.exports = noop;