UNPKG

@opstarts/chimp

Version:

Develop acceptance tests & end-to-end tests with realtime feedback.

11 lines (8 loc) 257 B
'use strict'; module.exports = { isFalsey: isFalsey, isTruthy: isTruthy }; function isFalsey(variable) { return !variable || variable === 'false' || variable === 'null' || variable === ''; } function isTruthy(variable) { return !isFalsey(variable); }