UNPKG

ember-native-dom-helpers

Version:

Test helpers for your integration tests that fire native events

11 lines (8 loc) 242 B
export default function isFormControl(el) { let formControlTags = ['INPUT', 'BUTTON', 'SELECT', 'TEXTAREA']; let { tagName, type } = el; if (type === 'hidden') { return false; } return formControlTags.indexOf(tagName) > -1; }