UNPKG

@planjs/utils

Version:

🔧 Common tools collection

19 lines (17 loc) 295 B
/** * 是否为undefined * @param value * @category Is */ function isUndefined(value) { return value === void 0; } /** * 是否为undefined字符串 * @param value * @category Is */ export function isUndefinedStr(value) { return value === 'undefined'; } export default isUndefined;