mirror of
https://github.com/Polymer/polymer.git
synced 2025-02-25 18:55:30 -06:00
ensure isDebouncerActive returns a Boolean
This commit is contained in:
parent
0206852575
commit
391649341b
@ -52,7 +52,7 @@ subject to an additional IP rights grant found at http://polymer.github.io/PATEN
|
||||
*/
|
||||
isDebouncerActive: function(jobName) {
|
||||
var debouncer = this._debouncers[jobName];
|
||||
return debouncer && debouncer.finish;
|
||||
return !!(debouncer && debouncer.finish);
|
||||
},
|
||||
|
||||
/**
|
||||
|
Loading…
Reference in New Issue
Block a user