https://github.com/futantan/ftt-sensitive-words
https://github.com/futantan/ftt-sensitive-words
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/futantan/ftt-sensitive-words
- Owner: futantan
- Created: 2017-10-29T13:54:08.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2017-11-06T14:49:05.000Z (over 7 years ago)
- Last Synced: 2025-02-25T00:29:34.364Z (3 months ago)
- Language: JavaScript
- Size: 28.3 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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 ***
```