Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in Clear category for [old] Stressful Subject by mozurin
"use strict";
function isStressful(subj)
{
return (
subj.search(/^[^a-z]*$/) != -1 ||
subj.endsWith('!!!') ||
subj.replace(/[^A-Za-z ]/g, '').search(
new RegExp(
['help', 'asap', 'urgent'].map(
e => '(' + [...e].join('+') + '+)'
).join('|'),
'i'
)
) != -1
);
}
June 18, 2018