프로젝트

일반

사용자정보

통계
| 개정판:

root / HServer / 00.Server / 00.Program / node_modules / lodash / noop.js

이력 | 보기 | 이력해설 | 다운로드 (250 Bytes)

1 39 HKM
/**
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;