Get and set the user's text selection on an input or text area.
$ npm install caret-position2
var get = require('caret-position2/get');
var set = require('caret-position2/set');
// Set caret position after the first character
set(input, 1)
get(input) // -> { start:1, end:1, caret:1 }
// Set text selection to the second and third character
set(input, 1, 3)
get(input) // -> { start:1, end:3, caret:3 }