selection.ts 125 B

1234
  1. export const removeAllRanges = () => {
  2. const selection = window.getSelection()
  3. selection && selection.removeAllRanges()
  4. }