Pergunta

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

Thanks in advance,

Madhu

Foi útil?

Solução

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

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

src: deferred.js

Licenciado em: CC-BY-SA com atribuição
Não afiliado a StackOverflow
scroll top