You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// This filter accepts messages whose (title OR content) is on the whitelist AND rejects those whose (title OR content) is on blacklist.
// This filter counts number of characters of the message content and append the title with the length.
// this filter prefixes title with the matched word or words (up to 3 words).
// This filter purges duplicates.
// This filter purges messages that were rejected.
{includes method versus whitelist.some(i => msg.title.indexOf(i) != -1) method ?} (which one is better?)
var or const ? whitelist = ['X', 'Y', 'Z'];
var or const ? blacklist = ['A', 'B', 'C'];
so title should be something like [Length of message content] (mandatory in all cases) + [matched word 1] (mandatory) + [matched word 2] (optional) + [matched word 3] (optional) + [original title] (mandatory)
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
// This filter accepts messages whose (title OR content) is on the whitelist AND rejects those whose (title OR content) is on blacklist.
// This filter counts number of characters of the message content and append the title with the length.
// this filter prefixes title with the matched word or words (up to 3 words).
// This filter purges duplicates.
// This filter purges messages that were rejected.
{includes method versus whitelist.some(i => msg.title.indexOf(i) != -1) method ?} (which one is better?)
var or const ? whitelist = ['X', 'Y', 'Z'];
var or const ? blacklist = ['A', 'B', 'C'];
so title should be something like [Length of message content] (mandatory in all cases) + [matched word 1] (mandatory) + [matched word 2] (optional) + [matched word 3] (optional) + [original title] (mandatory)
Beta Was this translation helpful? Give feedback.
All reactions