TechnologyAdvice/obey

View on GitHub
src/typeStrategies/boolean.js

Summary

Maintainability
A
0 mins
Test Coverage
const boolean = {
  default: context => {
    if (typeof context.value !== 'boolean') {
      context.fail('Value must be a boolean')
    }
  }
}

module.exports = boolean