UNPKG

@skhemata/skhemata-form

Version:

Skhemata Form Web Component. This web component can be used as base web component when working with forms and inputs.

9 lines (6 loc) 164 B
import assertString from './util/assertString'; const md5 = /^[a-f0-9]{32}$/; export default function isMD5(str) { assertString(str); return md5.test(str); }