Bump to v3.0.0.

This commit is contained in:
John-David Dalton
2015-01-10 12:55:03 -08:00
committed by jdalton
commit 5379c1996b
350 changed files with 12910 additions and 0 deletions

17
utility/noop.js Normal file
View File

@@ -0,0 +1,17 @@
/**
* A no-operation function.
*
* @static
* @memberOf _
* @category Utility
* @example
*
* var object = { 'user': 'fred' };
* _.noop(object) === undefined;
* // => true
*/
function noop() {
// No operation performed.
}
export default noop;