An open API service indexing awesome lists of open source software.

https://github.com/futantan/ftt-sensitive-words


https://github.com/futantan/ftt-sensitive-words

Last synced: 3 months ago
JSON representation

Awesome Lists containing this project

README

        

## npm-package demo

```js
const senstiveWords = require('ftt-sensitive-words').default
const filtered = senstiveWords(
'The new apple macbook pro will have a touchbar',
['pro', 'touchbar']
)
console.log(filtered)
// The new apple macbook *** will have a ***
```