UNPKG

dom-form-serializer

Version:
10 lines (8 loc) 246 B
import TypeRegistry from './TypeRegistry' export default class KeyAssignmentValidators extends TypeRegistry { constructor (options) { super(options) this.registerDefault(() => true) this.register('radio', (el) => el.checked) } }