heyujie
2021-06-07 8f8155aa4c83f7c2577ac123add550766b6a7ce3
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
// Polyfills friendly, therefore ES5 syntax
 
"use strict";
 
var isObject = require("../object/is");
 
var iteratorSymbol = Symbol.iterator;
 
if (!iteratorSymbol) {
    throw new Error("Cannot initialize iterator/is due to Symbol.iterator not being implemented");
}
 
module.exports = function (value/*, options*/) {
    var options = arguments[1];
    if (!isObject(value)) {
        if (!isObject(options) || !options.allowString || typeof value !== "string") return false;
    }
    try {
        if (typeof value[iteratorSymbol] !== "function") return false;
    } catch (error) {
        return false;
    }
    if (!options) return true;
    if (options.denyEmpty) {
        try {
            if (value[iteratorSymbol]().next().done) return false;
        } catch (error) {
            return false;
        }
    }
    return true;
};