1 line
3.1 KiB
JSON
1 line
3.1 KiB
JSON
{"ast":null,"code":"var hasOwn = require('../internals/has-own-property');\n\nvar isCallable = require('../internals/is-callable');\n\nvar toObject = require('../internals/to-object');\n\nvar sharedKey = require('../internals/shared-key');\n\nvar CORRECT_PROTOTYPE_GETTER = require('../internals/correct-prototype-getter');\n\nvar IE_PROTO = sharedKey('IE_PROTO');\nvar $Object = Object;\nvar ObjectPrototype = $Object.prototype; // `Object.getPrototypeOf` method\n// https://tc39.es/ecma262/#sec-object.getprototypeof\n// eslint-disable-next-line es-x/no-object-getprototypeof -- safe\n\nmodule.exports = CORRECT_PROTOTYPE_GETTER ? $Object.getPrototypeOf : function (O) {\n var object = toObject(O);\n if (hasOwn(object, IE_PROTO)) return object[IE_PROTO];\n var constructor = object.constructor;\n\n if (isCallable(constructor) && object instanceof constructor) {\n return constructor.prototype;\n }\n\n return object instanceof $Object ? ObjectPrototype : null;\n};","map":{"version":3,"names":["hasOwn","require","isCallable","toObject","sharedKey","CORRECT_PROTOTYPE_GETTER","IE_PROTO","$Object","Object","ObjectPrototype","prototype","module","exports","getPrototypeOf","O","object","constructor"],"sources":["/Users/paolasanchez/Desktop/Pry4/Katoikia/katoikia-app/web-ui/sakai-react/node_modules/core-js/internals/object-get-prototype-of.js"],"sourcesContent":["var hasOwn = require('../internals/has-own-property');\nvar isCallable = require('../internals/is-callable');\nvar toObject = require('../internals/to-object');\nvar sharedKey = require('../internals/shared-key');\nvar CORRECT_PROTOTYPE_GETTER = require('../internals/correct-prototype-getter');\n\nvar IE_PROTO = sharedKey('IE_PROTO');\nvar $Object = Object;\nvar ObjectPrototype = $Object.prototype;\n\n// `Object.getPrototypeOf` method\n// https://tc39.es/ecma262/#sec-object.getprototypeof\n// eslint-disable-next-line es-x/no-object-getprototypeof -- safe\nmodule.exports = CORRECT_PROTOTYPE_GETTER ? $Object.getPrototypeOf : function (O) {\n var object = toObject(O);\n if (hasOwn(object, IE_PROTO)) return object[IE_PROTO];\n var constructor = object.constructor;\n if (isCallable(constructor) && object instanceof constructor) {\n return constructor.prototype;\n } return object instanceof $Object ? ObjectPrototype : null;\n};\n"],"mappings":"AAAA,IAAIA,MAAM,GAAGC,OAAO,CAAC,+BAAD,CAApB;;AACA,IAAIC,UAAU,GAAGD,OAAO,CAAC,0BAAD,CAAxB;;AACA,IAAIE,QAAQ,GAAGF,OAAO,CAAC,wBAAD,CAAtB;;AACA,IAAIG,SAAS,GAAGH,OAAO,CAAC,yBAAD,CAAvB;;AACA,IAAII,wBAAwB,GAAGJ,OAAO,CAAC,uCAAD,CAAtC;;AAEA,IAAIK,QAAQ,GAAGF,SAAS,CAAC,UAAD,CAAxB;AACA,IAAIG,OAAO,GAAGC,MAAd;AACA,IAAIC,eAAe,GAAGF,OAAO,CAACG,SAA9B,C,CAEA;AACA;AACA;;AACAC,MAAM,CAACC,OAAP,GAAiBP,wBAAwB,GAAGE,OAAO,CAACM,cAAX,GAA4B,UAAUC,CAAV,EAAa;EAChF,IAAIC,MAAM,GAAGZ,QAAQ,CAACW,CAAD,CAArB;EACA,IAAId,MAAM,CAACe,MAAD,EAAST,QAAT,CAAV,EAA8B,OAAOS,MAAM,CAACT,QAAD,CAAb;EAC9B,IAAIU,WAAW,GAAGD,MAAM,CAACC,WAAzB;;EACA,IAAId,UAAU,CAACc,WAAD,CAAV,IAA2BD,MAAM,YAAYC,WAAjD,EAA8D;IAC5D,OAAOA,WAAW,CAACN,SAAnB;EACD;;EAAC,OAAOK,MAAM,YAAYR,OAAlB,GAA4BE,eAA5B,GAA8C,IAArD;AACH,CAPD"},"metadata":{},"sourceType":"script"} |