UNPKG

froebel

Version:
5 lines (4 loc) 229 B
/** Checks if `value` is truthy. Literal types are narrowed accordingly. */ export const truthy = value => !!value; /** Checks if `value` is falsy. Literal types are narrowed accordingly. */ export const falsy = value => !value;