Skip to content

Instantly share code, notes, and snippets.

@levvsha
Created June 24, 2018 10:16
Show Gist options
  • Select an option

  • Save levvsha/090eb69e5e9fbb44dfe85e0b42e3828b to your computer and use it in GitHub Desktop.

Select an option

Save levvsha/090eb69e5e9fbb44dfe85e0b42e3828b to your computer and use it in GitHub Desktop.
export const getSelectionRange = () => {
const selection = window.getSelection();
if (selection.rangeCount === 0) return null;
return selection.getRangeAt(0);
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment