UNPKG

expletives

Version:

A list of expletives and some functions to test your strings for them

9 lines (8 loc) 237 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.nword = void 0; function nword(text) { const r = new RegExp(`n+[i1l|]+[gkq469]+[e3a4i]+[ra4]s?`); return r.test(text); } exports.nword = nword;