projects
/
platform
/
framework
/
web
/
crosswalk-tizen.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
344adea0c34b057b4a0cd88793ee21681d58cd7f
[platform/framework/web/crosswalk-tizen.git]
/
1
/**
2
* A no-operation function which returns `undefined` regardless of the
3
* arguments it receives.
4
*
5
* @static
6
* @memberOf _
7
* @category Utility
8
* @example
9
*
10
* var object = { 'user': 'fred' };
11
*
12
* _.noop(object) === undefined;
13
* // => true
14
*/
15
function noop() {
16
// No operation performed.
17
}
18
19
module.exports = noop;