Chunked Typing

Batch multiple characters per cycle for faster output

const typer = new TypeMorph({
  parent: "target",
  speed: 40,
  chunkSize: 4,
});

typer.type("This text will appear in chunks of four characters at a time.");