UNPKG

382 BJavaScriptView Raw
1/**
2 * Check if an input type is selectable, based on WHATWG spec.
3 *
4 * See:
5 * - https://stackoverflow.com/questions/21177489/selectionstart-selectionend-on-input-type-number-no-longer-allowed-in-chrome/24175357
6 * - https://html.spec.whatwg.org/multipage/input.html#do-not-apply
7 */
8export default function isSelectable(inputNode) {
9 return inputNode.selectionStart != null;
10}
\No newline at end of file