glin-profanity
Version:
Glin-Profanity is a lightweight and efficient npm package designed to detect and filter profane language in text inputs across multiple languages. Whether you’re building a chat application, a comment section, or any platform where user-generated content
52 lines • 2.69 kB
JavaScript
"use strict";
var __importDefault = (this && this.__importDefault) || function (mod) {
return (mod && mod.__esModule) ? mod : { "default": mod };
};
Object.defineProperty(exports, "__esModule", { value: true });
const arabic_json_1 = __importDefault(require("./arabic.json"));
const chinese_json_1 = __importDefault(require("./chinese.json"));
const czech_json_1 = __importDefault(require("./czech.json"));
const danish_json_1 = __importDefault(require("./danish.json"));
const esperanto_json_1 = __importDefault(require("./esperanto.json"));
const english_json_1 = __importDefault(require("./english.json"));
const finnish_json_1 = __importDefault(require("./finnish.json"));
const german_json_1 = __importDefault(require("./german.json"));
const hindi_json_1 = __importDefault(require("./hindi.json"));
const hungarian_json_1 = __importDefault(require("./hungarian.json"));
const korean_json_1 = __importDefault(require("./korean.json"));
const Norwegian_json_1 = __importDefault(require("./Norwegian.json"));
const persian_json_1 = __importDefault(require("./persian.json"));
const polish_json_1 = __importDefault(require("./polish.json"));
const portuguese_json_1 = __importDefault(require("./portuguese.json"));
const russian_json_1 = __importDefault(require("./russian.json"));
const french_json_1 = __importDefault(require("./french.json"));
const italian_json_1 = __importDefault(require("./italian.json"));
const japanese_json_1 = __importDefault(require("./japanese.json"));
const turkish_json_1 = __importDefault(require("./turkish.json"));
const swedish_json_1 = __importDefault(require("./swedish.json"));
const thai_json_1 = __importDefault(require("./thai.json"));
exports.default = {
arabic: arabic_json_1.default.words,
chinese: chinese_json_1.default.words,
czech: czech_json_1.default.words,
danish: danish_json_1.default.words,
english: english_json_1.default.words,
esperanto: esperanto_json_1.default.words,
finnish: finnish_json_1.default.words,
french: french_json_1.default.words,
german: german_json_1.default.words,
hindi: hindi_json_1.default.words,
hungarian: hungarian_json_1.default.words,
italian: italian_json_1.default.words,
japanese: japanese_json_1.default.words,
korean: korean_json_1.default.words,
norwegian: Norwegian_json_1.default.words,
persian: persian_json_1.default.words,
polish: polish_json_1.default.words,
portuguese: portuguese_json_1.default.words,
russian: russian_json_1.default.words,
turkish: turkish_json_1.default.words,
swedish: swedish_json_1.default.words,
thai: thai_json_1.default.words,
};
//# sourceMappingURL=dictionary.js.map