UNPKG

prevent-widows

Version:

Prevent widows from appearing in a string.

15 lines (14 loc) 249 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); const HTML = { space: " ", hyphen: "‑", }; const UNICODE = { space: "\u00a0", hyphen: "\u2011", }; exports.default = { HTML, UNICODE, };