UNPKG

prevent-widows

Version:

Prevent widows from appearing in a string.

7 lines (6 loc) 256 B
import type { Encoding } from "./encodings"; export type PreventWindowsOptions = { encoding: Encoding; }; declare const preventWidows: (text: string, customPreventWidowsOptions?: Partial<PreventWindowsOptions>) => string; export default preventWidows;