UNPKG

expletives

Version:

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

8 lines (7 loc) 317 B
import badWords from './badwords'; import { nazi } from './nazi'; import { nword } from './nword'; declare const badWordsArray: string[]; declare const minimalBadWordsArray: any[]; declare function hasBadWords(inp: string): boolean; export { badWords, badWordsArray, minimalBadWordsArray, hasBadWords, nazi, nword };