UNPKG

uni-packing-wgt

Version:

uniapp wgt多环境打包、调试、发布(七牛云)插件

15 lines (12 loc) 263 B
/** * @author: HZWei * @date: 2024/6/14 * @desc: */ function isEmpty(value) { return !value || value?.length === 0 } function isEmptyMulti(...values) { return values.filter((v) => isEmpty(v)).length > 0 } module.exports = { isEmpty , isEmptyMulti }