UNPKG

xe-utils

Version:

JavaScript 函数库、工具类

16 lines (13 loc) 335 B
/* eslint-disable valid-typeof */ import staticStrUndefined from './staticStrUndefined' /** * 判断是否Set对象 * * @param {Object} obj 对象 * @return {Boolean} */ var supportSet = typeof Set !== staticStrUndefined function isSet (obj) { return supportSet && obj instanceof Set } export default isSet