UNPKG

hyperform

Version:

Capture form validation back from the browser

13 lines (8 loc) 258 B
'use strict'; import is_validation_candidate from '../tools/is_validation_candidate'; /** * check, if an element will be subject to HTML5 validation at all */ export default function willValidate(element) { return is_validation_candidate(element); }