iwmlib/lib/3rdparty/systemjs/babel-helpers/typeof.js

5 lines
274 B
JavaScript

export default typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) {
return typeof obj;
} : function (obj) {
return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj;
};