UNPKG

bootstrap-vue-3

Version:

Early (but lovely) implementation of Vue 3, Bootstrap 5 and Typescript

20 lines (17 loc) 585 B
import type {Booleanish} from '../types' /** * Type predicate function to check if the input is Booleanish type * * @param {unknown} input * @returns inputisBooleanish */ export const isBooleanish = (input: unknown): input is Booleanish => typeof input === 'boolean' || input === '' || input === 'true' || input === 'false' /** * Converts a Booleanish type to boolean * * @param {Booleanish} input * @returns */ export const resolveBooleanish = (input: Booleanish): boolean => typeof input === 'boolean' ? input : input === '' ? true : input === 'true' ? true : false