{"version":3,"sources":["webpack:///./node_modules/core-util-is/lib/util.js"],"names":["objectToString","o","Object","prototype","toString","call","exports","isArray","arg","Array","isBoolean","isNull","isNullOrUndefined","isNumber","isString","isSymbol","isUndefined","isRegExp","re","isObject","isDate","d","isError","e","Error","isFunction","isPrimitive","isBuffer","Buffer"],"mappings":"gFAAA,YAwGA,SAASA,eAAeC,GACtB,OAAOC,OAAOC,UAAUC,SAASC,KAAKJ,GA3ExCK,EAAQC,QANR,SAASA,QAAQC,GACf,OAAIC,MAAMF,QACDE,MAAMF,QAAQC,GAEQ,mBAAxBR,eAAeQ,IAOxBF,EAAQI,UAHR,SAASA,UAAUF,GACjB,MAAsB,kBAARA,GAOhBF,EAAQK,OAHR,SAASA,OAAOH,GACd,OAAe,OAARA,GAOTF,EAAQM,kBAHR,SAASA,kBAAkBJ,GACzB,OAAc,MAAPA,GAOTF,EAAQO,SAHR,SAASA,SAASL,GAChB,MAAsB,iBAARA,GAOhBF,EAAQQ,SAHR,SAASA,SAASN,GAChB,MAAsB,iBAARA,GAOhBF,EAAQS,SAHR,SAASA,SAASP,GAChB,MAAsB,iBAARA,GAOhBF,EAAQU,YAHR,SAASA,YAAYR,GACnB,YAAe,IAARA,GAOTF,EAAQW,SAHR,SAASA,SAASC,GAChB,MAA8B,oBAAvBlB,eAAekB,IAOxBZ,EAAQa,SAHR,SAASA,SAASX,GAChB,MAAsB,iBAARA,GAA4B,OAARA,GAOpCF,EAAQc,OAHR,SAASA,OAAOC,GACd,MAA6B,kBAAtBrB,eAAeqB,IAOxBf,EAAQgB,QAHR,SAASA,QAAQC,GACf,MAA8B,mBAAtBvB,eAAeuB,IAA2BA,aAAaC,OAOjElB,EAAQmB,WAHR,SAASA,WAAWjB,GAClB,MAAsB,mBAARA,GAYhBF,EAAQoB,YARR,SAASA,YAAYlB,GACnB,OAAe,OAARA,GACe,kBAARA,GACQ,iBAARA,GACQ,iBAARA,GACQ,iBAARA,QACQ,IAARA,GAIhBF,EAAQqB,SAAWC,EAAOD,W","file":"npm.core-util-is-b211e0a3db232c557efc.js","sourcesContent":["// Copyright Joyent, Inc. and other Node contributors.\n//\n// Permission is hereby granted, free of charge, to any person obtaining a\n// copy of this software and associated documentation files (the\n// \"Software\"), to deal in the Software without restriction, including\n// without limitation the rights to use, copy, modify, merge, publish,\n// distribute, sublicense, and/or sell copies of the Software, and to permit\n// persons to whom the Software is furnished to do so, subject to the\n// following conditions:\n//\n// The above copyright notice and this permission notice shall be included\n// in all copies or substantial portions of the Software.\n//\n// THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS\n// OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\n// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN\n// NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,\n// DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR\n// OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE\n// USE OR OTHER DEALINGS IN THE SOFTWARE.\n\n// NOTE: These type checking functions intentionally don't use `instanceof`\n// because it is fragile and can be easily faked with `Object.create()`.\n\nfunction isArray(arg) {\n if (Array.isArray) {\n return Array.isArray(arg);\n }\n return objectToString(arg) === '[object Array]';\n}\nexports.isArray = isArray;\n\nfunction isBoolean(arg) {\n return typeof arg === 'boolean';\n}\nexports.isBoolean = isBoolean;\n\nfunction isNull(arg) {\n return arg === null;\n}\nexports.isNull = isNull;\n\nfunction isNullOrUndefined(arg) {\n return arg == null;\n}\nexports.isNullOrUndefined = isNullOrUndefined;\n\nfunction isNumber(arg) {\n return typeof arg === 'number';\n}\nexports.isNumber = isNumber;\n\nfunction isString(arg) {\n return typeof arg === 'string';\n}\nexports.isString = isString;\n\nfunction isSymbol(arg) {\n return typeof arg === 'symbol';\n}\nexports.isSymbol = isSymbol;\n\nfunction isUndefined(arg) {\n return arg === void 0;\n}\nexports.isUndefined = isUndefined;\n\nfunction isRegExp(re) {\n return objectToString(re) === '[object RegExp]';\n}\nexports.isRegExp = isRegExp;\n\nfunction isObject(arg) {\n return typeof arg === 'object' && arg !== null;\n}\nexports.isObject = isObject;\n\nfunction isDate(d) {\n return objectToString(d) === '[object Date]';\n}\nexports.isDate = isDate;\n\nfunction isError(e) {\n return (objectToString(e) === '[object Error]' || e instanceof Error);\n}\nexports.isError = isError;\n\nfunction isFunction(arg) {\n return typeof arg === 'function';\n}\nexports.isFunction = isFunction;\n\nfunction isPrimitive(arg) {\n return arg === null ||\n typeof arg === 'boolean' ||\n typeof arg === 'number' ||\n typeof arg === 'string' ||\n typeof arg === 'symbol' || // ES6 symbol\n typeof arg === 'undefined';\n}\nexports.isPrimitive = isPrimitive;\n\nexports.isBuffer = Buffer.isBuffer;\n\nfunction objectToString(o) {\n return Object.prototype.toString.call(o);\n}\n"],"sourceRoot":""}