UNPKG

@wordpress/wordcount

Version:
18 lines (17 loc) 558 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.default = stripHTMLEntities; /** * Removes items matched in the regex. * * @param {import('./index').WPWordCountSettings} settings The main settings object containing regular expressions * @param {string} text The string being counted. * * @return {string} The manipulated text. */ function stripHTMLEntities(settings, text) { return text.replace(settings.HTMLEntityRegExp, ''); } //# sourceMappingURL=stripHTMLEntities.js.map