@wordpress/wordcount
Version:
WordPress word count utility.
12 lines • 522 B
JavaScript
/**
* Replaces items matched in the regex with a single character.
*
* @param {import('./index').WPWordCountSettings} settings The main settings object containing regular expressions
* @param {string} text The string being counted.
*
* @return {string} The manipulated text.
*/
export default function transposeHTMLEntitiesToCountableChars(settings, text) {
return text.replace(settings.HTMLEntityRegExp, 'a');
}
//# sourceMappingURL=transposeHTMLEntitiesToCountableChars.js.map