UNPKG

hd-utils

Version:

A handy utils for modern JS developers

8 lines (7 loc) 252 B
/** * @description It will break the passed string into multiline string after a cretin length * @example breakStrAfterNChar("Javascript") => `Java * scri * pt` */ export default function breakStrAfterNChar(str: string, maxWidth: number): string;