(eventName)
| 731 | return ms; |
| 732 | } |
| 733 | function isInputEventSupported(eventName) { |
| 734 | var el = document.createElement("input"), evName = "on" + eventName, isSupported = evName in el; |
| 735 | if (!isSupported) { |
| 736 | el.setAttribute(evName, "return;"); |
| 737 | isSupported = typeof el[evName] === "function"; |
| 738 | } |
| 739 | el = null; |
| 740 | return isSupported; |
| 741 | } |
| 742 | function maskScope(actionObj, maskset, opts) { |
| 743 | maskset = maskset || this.maskset; |
| 744 | opts = opts || this.opts; |
no test coverage detected