UNPKG

yoastseo

Version:

Yoast client-side content analysis

16 lines (14 loc) 599 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.WORD_BOUNDARY_WITH_HYPHEN = exports.WORD_BOUNDARY_WITHOUT_HYPHEN = void 0; /* * A regex string that can be used to split a string on whitespaces, en-dashes, and hyphens. */ const WORD_BOUNDARY_WITH_HYPHEN = exports.WORD_BOUNDARY_WITH_HYPHEN = "[\\s\\u2013\\u002d]"; /* * A regex string that can be used to split a string on whitespaces and en-dashes. */ const WORD_BOUNDARY_WITHOUT_HYPHEN = exports.WORD_BOUNDARY_WITHOUT_HYPHEN = "[\\s\\u2013]"; //# sourceMappingURL=wordBoundariesWithoutPunctuation.js.map