util.js 102 Bytes Raw Blame History Permalink 1 2 3 4 export function toBoolean(val) { if (val === '') return val return val === 'true' || val == '1' }