/sensitive-words

An example npm packge for the related egghead.io course: https://egghead.io/courses/publish-javascript-packages-on-npm

Primary LanguageJavaScript

This repo is designed to accompany the related egghead.io video course: https://egghead.io/courses/publish-javascript-packages-on-npm


Example

$ npm install sensitive-words --save
const {sensitiveWords} = require('sensitive-words')
// ES2015 modules
import {sensitiveWords} from 'sensitive-words'

const filtered = 
  sensitiveWords(
    'The new apple macbook pro will have a touchbar',
    ['pro', 'touchbar']
  )

console.log(filtered)
// The new apple macbook *** will have a ***