UNPKG

honeycrisp

Version:
13 lines (10 loc) 254 B
const BeforeInputEvent = (input) => { input.addEventListener('beforeinput', (event) => { const isNumeric = n => !isNaN(n); if (!isNumeric(event.data)) { event.preventDefault() return } }) } export default BeforeInputEvent