UNPKG

@exabyte-io/chimpy

Version:

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

10 lines (7 loc) 221 B
module.exports = {isFalsey, isTruthy}; function isFalsey(variable) { return !variable || variable === 'false' || variable === 'null' || variable === ''; } function isTruthy(variable) { return !isFalsey(variable); }