getSelections.ts 286 B

123456789
  1. import React from "react";
  2. export default function getSelections(e: React.FocusEvent<HTMLInputElement | HTMLTextAreaElement>) {
  3. if (e && e.target) {
  4. const { selectionStart, selectionEnd } = e.target;
  5. return { selectionStart, selectionEnd };
  6. }
  7. return null;
  8. }