UNPKG

@wordpress/wordcount

Version:
12 lines (11 loc) 408 B
/** * 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. */ export default function stripRemovables( settings, text ) { return text.replace( settings.removeRegExp, '' ); }