negate-sentence
v0.2.0
Published
Negate sentence
Downloads
18
Readme
negate-sentence
Negate Sentence
Table of Contents
Background
It takes a sentence, e.g. is positive
and returns the negation is not positive
. It's based on simple string manipulation, nothing fancy, it wasn't tested on more complex sentences. It was created to remove some repetition in a template engine.
Install
npm install negate-sentence
Usage
const negate = require('negate-sentence')
const sentence = negate('is negative')
console.log(sentence) // 'is not negative'
Maintainers
Contributing
Please feel free to send PRs that improve the lib.
License
MIT