1.1.0 • Published 4 years ago
use-stop-typing v1.1.0
useStopTyping
React hook for running callback when input stops.
Installation
npm install use-stop-typingUsage
In this example, 'console.log("Update")' will be executed 2000ms after the input is stopped!
import { useRef } from 'react';
import { useStopTyping } from 'use-stop-typing';
export default () => {
  const ref = useRef<HTMLInputElement>(null);
  useStopTyping(ref, () => console.log('Update'), 2000);
  return (
    <input type="text" ref={ref} />
  )
}LICENSE
MIT