import { Truthy } from 'lodash';

export const isTruthy = <T>(value: T): value is Truthy<T> => !!value;
