/** * returns true if some of the array values is truthy * @example * someAreTruthy([0, 1, 2]) * // returns true */ export default function someAreTruthy(arr: any[]): boolean; //# sourceMappingURL=someAreTruthy.d.ts.map