replace-word
Version:
Several tools for changing a word into something.
40 lines (39 loc) • 564 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.inappropriateEmojis = exports.commonWords = void 0;
exports.commonWords = new Set([
'a',
'an',
'as',
'is',
'if',
'of',
'the',
'it',
'its',
'or',
'are',
'this',
'with',
'so',
'to',
'at',
'was',
'and',
]);
exports.inappropriateEmojis = [
'🍆',
'💦',
'🍑',
'🌮',
'👅',
'🐍',
'🔯',
'🖕',
'🚬',
'💣',
'🔫',
'🔪',
'💊',
'💉',
];