/** * Checks whether a value is truthy * * @example * is.truthy(true); // true * is.truthy(1); // true * is.truthy(0); // false */ declare function isTruthy(value: any): boolean; export default isTruthy;