/** * Tests any passed argument (or the contents of passed arrays) for truthiness. * * @param {...any} args * @returns {boolean} Returns true if any of the values are truthy. */ export default function any(...args: any[]): boolean;