UNPKG

hyperform

Version:

Capture form validation back from the browser

16 lines (13 loc) 275 B
'use strict'; /** * test the pattern attribute */ export default function(element) { return ( ! element.value || ! element.hasAttribute('pattern') || (new RegExp('^(?:'+ element.getAttribute('pattern') +')$')).test(element.value) ); }