Question

I need to check whether a object is Deferred or not using Jquery, how to check that?

Thanks in advance,

Madhu

Était-ce utile?

La solution

The logic used internally by jQuery's when() method is

if(object && $.isFunction( object.promise )){
}

src: deferred.js

Licencié sous: CC-BY-SA avec attribution
Non affilié à StackOverflow
scroll top