UNPKG

@yookue/ts-lang-utils

Version:

Common lang utilities for typescript

6 lines 170 B
import { isEmpty } from "./isEmpty"; export function allEmpty(texts) { return !texts || !texts.length || texts.every(function (item) { return isEmpty(item); }); }