UNPKG

@e280/authlocal

Version:

User-sovereign login system for everybody

9 lines (6 loc) 169 B
export function inputString(fn: (s: string) => void) { return (event: InputEvent) => { const input = event.currentTarget as HTMLInputElement fn(input.value) } }