UNPKG
prevent-widows
Version:
latest (1.1.2)
1.1.2
1.1.1
1.1.0
1.0.2
1.0.1
1.0.0
Prevent widows from appearing in a string.
github.com/bashaus/prevent-widows
bashaus/prevent-widows
prevent-widows
/
dist
/
lib
/
encodings.js
15 lines
(14 loc)
•
249 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
"use strict"
;
Object
.
defineProperty
(
exports
,
"__esModule"
, {
value
:
true
});
const
HTML
= {
space
:
" "
,
hyphen
:
"‑"
, };
const
UNICODE
= {
space
:
"\u00a0"
,
hyphen
:
"\u2011"
, };
exports
.
default
= {
HTML
,
UNICODE
, };