UNPKG

@skhemata/skhemata-form

Version:

Skhemata Form Web Component. This web component can be used as base web component when working with forms and inputs.

7 lines (5 loc) 171 B
import assertString from './util/assertString'; export default function isBoolean(str) { assertString(str); return (['true', 'false', '1', '0'].indexOf(str) >= 0); }