rallly/packages/utils/src/prevent-widows.ts
2023-03-13 15:49:12 +00:00

7 lines
220 B
TypeScript

export function preventWidows(text = "") {
if (text.split(" ").length < 3) {
return text;
}
const index = text.lastIndexOf(" ");
return [text.substring(0, index), text.substring(index + 1)].join("\u00a0");
}