/**
* @description This function takes a value and returns true if the value is truthy, otherwise it returns false.
* @example isTruthy(1) // true
* @example isTruthy(null) // false
* @param {any} value - any
*/constisTruthy = (value) => !!value;
exportdefault isTruthy;