UNPKG

@hayspec/spec

Version:

Core logic for Hayspec framework.

18 lines 321 B
/** * */ export default function truthy (value) { return ( value === true || value === 'true' || value === 'TRUE' || value === 1 || value === '1' || value === 'yes' || value === 'YES' || value === 'ok' || value === 'OK' || value === 'correct' || value === 'CORRECT' ); }