* Removes previously set `event` handler by `$duv` or `$duvl` from `object`. * * @param {object} object * @param {string} event * @public
(object, event)
| 146 | */ |
| 147 | |
| 148 | function $duvr(object, event) { |
| 149 | var item = spliceOutItem(listeners, object); |
| 150 | if (!item) return false; |
| 151 | applyOne( |
| 152 | object, |
| 153 | removeListenerMethods, |
| 154 | [event, item.handler], |
| 155 | dontKnowHowToListenMsg |
| 156 | ); |
| 157 | return true; |
| 158 | } |
| 159 | |
| 160 | /** |
| 161 | * |
nothing calls this directly
no test coverage detected