UNPKG

@yookue/ts-lang-utils

Version:

Common lang utilities for typescript

6 lines 169 B
import { isEmpty } from "./isEmpty"; export function anyEmpty(texts) { return !texts || !texts.length || texts.some(function (item) { return isEmpty(item); }); }