UNPKG

react-keyboard-time-input

Version:
8 lines (7 loc) 164 B
export default { start: el => el.selectionStart, end: el => el.selectionEnd, set: (el, start, end) => { el.setSelectionRange(start, end || start); } };