UNPKG

typeit

Version:

The most versatile animated typing utility on the planet.

10 lines (8 loc) 209 B
let select = ( selector: string, element: Node = document, all: boolean = false, ): Node | NodeList | null => { return element[`querySelector${all ? "All" : ""}`](selector); }; export default select;