* HELPERS
(type, fn, arg)
| 700 | * HELPERS |
| 701 | ***********************************************/ |
| 702 | function addEvent(type, fn, arg) { |
| 703 | window.addEventListener(type, fn, arg || false); |
| 704 | } |
| 705 | function removeEvent(type, fn, arg) { |
| 706 | window.removeEventListener(type, fn, arg || false); |
| 707 | } |
no outgoing calls
no test coverage detected