You are viewing a single comment's thread. Return to all comments →
You can use this "getProcessedText" code for a shorter version
const getProcessedText = () => { let omit = (inputText+" ").replace(/(a|the|and|or|but)\s+/g, "").trim(); return omitWords ? omit : inputText; };
Seems like cookies are disabled on this browser, please enable them to open this website
Word Omitter
You are viewing a single comment's thread. Return to all comments →
You can use this "getProcessedText" code for a shorter version