| 35 | _isUndefined = value => typeof(value) === "undefined", |
| 36 | _isObject = value => typeof(value) === "object", |
| 37 | _isNotFalse = value => value !== false, |
| 38 | _windowExists = () => typeof(window) !== "undefined", |
| 39 | _isFuncOrString = value => _isFunction(value) || _isString(value), |
| 40 | _isTypedArray = (typeof ArrayBuffer === "function" && ArrayBuffer.isView) || function() {}, // note: IE10 has ArrayBuffer, but NOT ArrayBuffer.isView(). |
no outgoing calls
no test coverage detected
searching dependent graphs…