UNPKG

expletives

Version:

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

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