/** * @module helpers/checker */ export function isBoolean(elm: unknown): elm is Boolean { return typeof elm === 'boolean'; }