1
0
Fork 0
forked from 0x2620/oxjs

use Ox.contains

This commit is contained in:
rolux 2012-05-24 19:22:57 +02:00
commit d5a2588a1e
2 changed files with 1 additions and 2 deletions

View file

@ -65,7 +65,6 @@ Ox.identity = function(val) {
Ox.noop <f> Returns undefined and calls optional callback without arguments
This can be used to combine a synchronous and an asynchronous code path.
@*/
// IE 8 doesn't like `Ox.void`
Ox.noop = function(callback) {
Ox.isFunction(callback) && callback();
};