{"version":3,"sources":["../node_modules/has-symbols/index.js","../node_modules/has-symbols/shams.js"],"names":["origSymbol","Symbol","hasSymbolSham","require","module","exports","Object","getOwnPropertySymbols","iterator","obj","sym","symObj","prototype","toString","call","keys","length","getOwnPropertyNames","syms","propertyIsEnumerable","getOwnPropertyDescriptor","descriptor","value","enumerable"],"mappings":"wGAEA,IAAIA,EAA+B,qBAAXC,QAA0BA,OAC9CC,EAAgBC,EAAQ,KAE5BC,EAAOC,QAAU,WAChB,MAA0B,oBAAfL,IACW,oBAAXC,SACsB,kBAAtBD,EAAW,SACO,kBAAlBC,OAAO,QAEXC,S,iCCRRE,EAAOC,QAAU,WAChB,GAAsB,oBAAXJ,QAAiE,oBAAjCK,OAAOC,sBAAwC,OAAO,EACjG,GAA+B,kBAApBN,OAAOO,SAAyB,OAAO,EAElD,IAAIC,EAAM,GACNC,EAAMT,OAAO,QACbU,EAASL,OAAOI,GACpB,GAAmB,kBAARA,EAAoB,OAAO,EAEtC,GAA4C,oBAAxCJ,OAAOM,UAAUC,SAASC,KAAKJ,GAA8B,OAAO,EACxE,GAA+C,oBAA3CJ,OAAOM,UAAUC,SAASC,KAAKH,GAAiC,OAAO,EAY3E,IAAKD,KADLD,EAAIC,GADS,GAEDD,EAAO,OAAO,EAC1B,GAA2B,oBAAhBH,OAAOS,MAAmD,IAA5BT,OAAOS,KAAKN,GAAKO,OAAgB,OAAO,EAEjF,GAA0C,oBAA/BV,OAAOW,qBAAiF,IAA3CX,OAAOW,oBAAoBR,GAAKO,OAAgB,OAAO,EAE/G,IAAIE,EAAOZ,OAAOC,sBAAsBE,GACxC,GAAoB,IAAhBS,EAAKF,QAAgBE,EAAK,KAAOR,EAAO,OAAO,EAEnD,IAAKJ,OAAOM,UAAUO,qBAAqBL,KAAKL,EAAKC,GAAQ,OAAO,EAEpE,GAA+C,oBAApCJ,OAAOc,yBAAyC,CAC1D,IAAIC,EAAaf,OAAOc,yBAAyBX,EAAKC,GACtD,GAdY,KAcRW,EAAWC,QAA8C,IAA1BD,EAAWE,WAAuB,OAAO,EAG7E,OAAO","file":"static/js/has-symbols.f631f11c.chunk.js","sourcesContent":["'use strict';\n\nvar origSymbol = typeof Symbol !== 'undefined' && Symbol;\nvar hasSymbolSham = require('./shams');\n\nmodule.exports = function hasNativeSymbols() {\n\tif (typeof origSymbol !== 'function') { return false; }\n\tif (typeof Symbol !== 'function') { return false; }\n\tif (typeof origSymbol('foo') !== 'symbol') { return false; }\n\tif (typeof Symbol('bar') !== 'symbol') { return false; }\n\n\treturn hasSymbolSham();\n};\n","'use strict';\n\n/* eslint complexity: [2, 18], max-statements: [2, 33] */\nmodule.exports = function hasSymbols() {\n\tif (typeof Symbol !== 'function' || typeof Object.getOwnPropertySymbols !== 'function') { return false; }\n\tif (typeof Symbol.iterator === 'symbol') { return true; }\n\n\tvar obj = {};\n\tvar sym = Symbol('test');\n\tvar symObj = Object(sym);\n\tif (typeof sym === 'string') { return false; }\n\n\tif (Object.prototype.toString.call(sym) !== '[object Symbol]') { return false; }\n\tif (Object.prototype.toString.call(symObj) !== '[object Symbol]') { return false; }\n\n\t// temp disabled per https://github.com/ljharb/object.assign/issues/17\n\t// if (sym instanceof Symbol) { return false; }\n\t// temp disabled per https://github.com/WebReflection/get-own-property-symbols/issues/4\n\t// if (!(symObj instanceof Symbol)) { return false; }\n\n\t// if (typeof Symbol.prototype.toString !== 'function') { return false; }\n\t// if (String(sym) !== Symbol.prototype.toString.call(sym)) { return false; }\n\n\tvar symVal = 42;\n\tobj[sym] = symVal;\n\tfor (sym in obj) { return false; } // eslint-disable-line no-restricted-syntax, no-unreachable-loop\n\tif (typeof Object.keys === 'function' && Object.keys(obj).length !== 0) { return false; }\n\n\tif (typeof Object.getOwnPropertyNames === 'function' && Object.getOwnPropertyNames(obj).length !== 0) { return false; }\n\n\tvar syms = Object.getOwnPropertySymbols(obj);\n\tif (syms.length !== 1 || syms[0] !== sym) { return false; }\n\n\tif (!Object.prototype.propertyIsEnumerable.call(obj, sym)) { return false; }\n\n\tif (typeof Object.getOwnPropertyDescriptor === 'function') {\n\t\tvar descriptor = Object.getOwnPropertyDescriptor(obj, sym);\n\t\tif (descriptor.value !== symVal || descriptor.enumerable !== true) { return false; }\n\t}\n\n\treturn true;\n};\n"],"sourceRoot":""}