UNPKG

nsn-util

Version:

NSN工具辅助组件

14 lines (10 loc) 286 B
import { groupBy, isEmpty as lodashIsEmpty } from 'lodash'; /** 空数组 */ var isEmpty = function isEmpty(item) { return lodashIsEmpty(item); }; /** 非空数组 */ var isNotEmpty = function isNotEmpty(item) { return !isEmpty(item); }; export { isEmpty, isNotEmpty, groupBy };