1.0.0 • Published 6 years ago

stron v1.0.0

Weekly downloads
4
License
MIT
Repository
github
Last release
6 years ago

stron

Use the generics variables to transform a string to boolean.

const stron = require('stron')

stron('on') // => true
stron('active') // => true
stron('inactive') // => false

Example

const stron = require('stron')

if (stron(process.env.FEATURENAME_ENABLED)) {
    installFeature()
}