UNPKG

@newdash/newdash

Version:

javascript/typescript utility library

21 lines (20 loc) 359 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.noop = void 0; /** * This method returns `undefined`. * * @since 2.3.0 * @category Util * @example * * ```js * times(2, noop); * // => [undefined, undefined] * ``` */ function noop() { // No operation performed. } exports.noop = noop; exports.default = noop;