UNPKG

rambdax

Version:

Extended version of Rambda - a lightweight, faster alternative to Ramda

14 lines (11 loc) 243 B
import { type } from '../type.js' import { isArray } from './isArray.js' export function isTruthy(x){ if (isArray(x)){ return x.length > 0 } if (type(x) === 'Object'){ return Object.keys(x).length > 0 } return Boolean(x) }