UNPKG

yoastseo-dep

Version:

Yoast clientside page analysis

14 lines (12 loc) 392 B
const estimatedReadingTimeRegex = new RegExp( "<p class='yoast-reading-time__wrapper.*?</p>", "igs" ); /** * Excludes table of contents from text. * * @param {String} text The text to check. * * @returns {String} The text without table of contents. */ export default function excludeEstimatedReadingTime( text ) { text = text.replace( estimatedReadingTimeRegex, "" ); return text; }