(e)
| 4 | const ARROW_RIGHT = 'right' |
| 5 | |
| 6 | const stopEvent = function(e) { |
| 7 | |
| 8 | if (typeof e.stopPropagation === 'function') e.stopPropagation() |
| 9 | if (typeof e.preventDefault === 'function') e.preventDefault() |
| 10 | |
| 11 | } |
| 12 | |
| 13 | const validate = function(opts = {}) { |
| 14 |
no outgoing calls
no test coverage detected