UNPKG

340 BJavaScriptView Raw
1/* eslint-disable valid-typeof */
2var staticStrUndefined = require('./staticStrUndefined')
3
4/**
5 * 判断是否Set对象
6 *
7 * @param {Object} obj 对象
8 * @return {Boolean}
9 */
10var supportSet = typeof Set !== staticStrUndefined
11function isSet (obj) {
12 return supportSet && obj instanceof Set
13}
14
15module.exports = isSet