utils.js 150 B

12345678910
  1. function booleanParser(opt) {
  2. if (opt == true || opt == 'true' || opt == '1') {
  3. return true;
  4. }
  5. return false;
  6. }
  7. export {
  8. booleanParser,
  9. }