Files
lodash/utility/noop.js
John-David Dalton 9b7c4d6761 Bump to v3.0.0.
2015-05-19 22:25:55 -07:00

21 lines
308 B
JavaScript

define([], function() {
/**
* A no-operation function.
*
* @static
* @memberOf _
* @category Utility
* @example
*
* var object = { 'user': 'fred' };
* _.noop(object) === undefined;
* // => true
*/
function noop() {
// No operation performed.
}
return noop;
});