UNPKG

@yookue/ts-lang-utils

Version:

Common lang utilities for typescript

6 lines 186 B
import { isNotEmpty } from "./isNotEmpty"; export function allNotEmpty(texts) { return !!texts && texts.length > 0 && texts.every(function (item) { return isNotEmpty(item); }); }