Sign in
cobalt
/
cobalt
/
9708d320f5c570ac1ada07d0e0136706ac0a5c29
/
.
/
third_party
/
devtools
/
node_modules
/
lodash
/
noop.js
blob: 3c0862ee62f072c084b3664555b42eac8c45622e [
file
] [
log
] [
blame
]
/**
* 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
;