UNPKG

natural-selection

Version:

Detect if an element supports selection range in chrome

6 lines (4 loc) 203 B
var supportedTypes = ['textarea', 'text', 'search', 'tel', 'url', 'password']; module.exports = function(element) { return !!(element.setSelectionRange && ~supportedTypes.indexOf(element.type)); };