Skip to main content
Module

x/rambda/source/_internals/isTruthy.js

Faster and smaller alternative to Ramda
Go to Latest
File
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)}