Clarify _.noop docs. [ci skip]

This commit is contained in:
jdalton
2015-02-15 22:41:37 -08:00
parent 249504b7d6
commit b66a886682

View File

@@ -10830,7 +10830,8 @@
}
/**
* A no-operation function.
* A no-operation function which returns `undefined` regardless of the
* arguments it receives.
*
* @static
* @memberOf _
@@ -10838,6 +10839,7 @@
* @example
*
* var object = { 'user': 'fred' };
*
* _.noop(object) === undefined;
* // => true
*/