/** * This method returns `undefined`. * * @static * @since 2.3.0 * @category Util * @example * * times(2, noop); * // => [undefined, undefined] */ function noop() { // No operation performed. } export default noop;