react-native-web
Version:
React Native for Web
20 lines (18 loc) • 624 B
JavaScript
/**
* Copyright (c) Nicolas Gallagher
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*
* @flow
*/
export default function isSelectionValid(): boolean {
const selection = window.getSelection();
const string = selection.toString();
const anchorNode = selection.anchorNode;
const focusNode = selection.focusNode;
const isTextNode =
(anchorNode && anchorNode.nodeType === window.Node.TEXT_NODE) ||
(focusNode && focusNode.nodeType === window.Node.TEXT_NODE);
return string.length >= 1 && string !== '\n' && isTextNode;
}