UNPKG

typeit

Version:

The most versatile animated typing utility on the planet.

13 lines (11 loc) 247 B
let updateCursorPosition = ( steps: number, cursorPosition: number, printedCharacters: Element[], ) => { return Math.min( Math.max(cursorPosition + steps, 0), printedCharacters.length, ); }; export default updateCursorPosition;