UNPKG

@10yun/open-sdk

Version:

开放平台接入sdk

10 lines (9 loc) 275 B
/** * 判断是否为有效字符串: * - 类型必须是 string * - 不能是空字符串或全是空格 * - 不能是 'undefined' 这个字符串 */ export function isValidString(str) { return typeof str === 'string' && str.trim() !== '' && str !== 'undefined'; }