UNPKG

alia

Version:
12 lines (11 loc) 273 B
export function toBool(data) { const trues = /^(true|1|on|yes|y)$/; const falses = /^(false|0|off|no|n)$/; if (!data.length || trues.test(data[0])) { return true; } if (falses.test(data[0])) { return false; } return undefined; }