Skip to content

Latest commit

 

History

History
13 lines (9 loc) · 314 Bytes

README.md

File metadata and controls

13 lines (9 loc) · 314 Bytes

Swear Detector

Usage

const SwearDetector = require('beep')

const dictionary = ['thuốc lá', 'súng ống', 'tiểu liên']
const string = 'thuốc lá, súng ống, đạn dược'

const swearWords = SwearDetector(string, dictionary)
console.log(swearWords) // ["thuốc lá", "súng ống"]