1 line
2.5 KiB
JSON
1 line
2.5 KiB
JSON
{"ast":null,"code":"var getBuiltIn = require('../internals/get-built-in');\n\nvar uncurryThis = require('../internals/function-uncurry-this');\n\nvar getOwnPropertyNamesModule = require('../internals/object-get-own-property-names');\n\nvar getOwnPropertySymbolsModule = require('../internals/object-get-own-property-symbols');\n\nvar anObject = require('../internals/an-object');\n\nvar concat = uncurryThis([].concat); // all object keys, includes non-enumerable and symbols\n\nmodule.exports = getBuiltIn('Reflect', 'ownKeys') || function ownKeys(it) {\n var keys = getOwnPropertyNamesModule.f(anObject(it));\n var getOwnPropertySymbols = getOwnPropertySymbolsModule.f;\n return getOwnPropertySymbols ? concat(keys, getOwnPropertySymbols(it)) : keys;\n};","map":{"version":3,"names":["getBuiltIn","require","uncurryThis","getOwnPropertyNamesModule","getOwnPropertySymbolsModule","anObject","concat","module","exports","ownKeys","it","keys","f","getOwnPropertySymbols"],"sources":["/Users/paolasanchez/Desktop/Pry4/Katoikia/katoikia-app/web-ui/sakai-react/node_modules/core-js/internals/own-keys.js"],"sourcesContent":["var getBuiltIn = require('../internals/get-built-in');\nvar uncurryThis = require('../internals/function-uncurry-this');\nvar getOwnPropertyNamesModule = require('../internals/object-get-own-property-names');\nvar getOwnPropertySymbolsModule = require('../internals/object-get-own-property-symbols');\nvar anObject = require('../internals/an-object');\n\nvar concat = uncurryThis([].concat);\n\n// all object keys, includes non-enumerable and symbols\nmodule.exports = getBuiltIn('Reflect', 'ownKeys') || function ownKeys(it) {\n var keys = getOwnPropertyNamesModule.f(anObject(it));\n var getOwnPropertySymbols = getOwnPropertySymbolsModule.f;\n return getOwnPropertySymbols ? concat(keys, getOwnPropertySymbols(it)) : keys;\n};\n"],"mappings":"AAAA,IAAIA,UAAU,GAAGC,OAAO,CAAC,2BAAD,CAAxB;;AACA,IAAIC,WAAW,GAAGD,OAAO,CAAC,oCAAD,CAAzB;;AACA,IAAIE,yBAAyB,GAAGF,OAAO,CAAC,4CAAD,CAAvC;;AACA,IAAIG,2BAA2B,GAAGH,OAAO,CAAC,8CAAD,CAAzC;;AACA,IAAII,QAAQ,GAAGJ,OAAO,CAAC,wBAAD,CAAtB;;AAEA,IAAIK,MAAM,GAAGJ,WAAW,CAAC,GAAGI,MAAJ,CAAxB,C,CAEA;;AACAC,MAAM,CAACC,OAAP,GAAiBR,UAAU,CAAC,SAAD,EAAY,SAAZ,CAAV,IAAoC,SAASS,OAAT,CAAiBC,EAAjB,EAAqB;EACxE,IAAIC,IAAI,GAAGR,yBAAyB,CAACS,CAA1B,CAA4BP,QAAQ,CAACK,EAAD,CAApC,CAAX;EACA,IAAIG,qBAAqB,GAAGT,2BAA2B,CAACQ,CAAxD;EACA,OAAOC,qBAAqB,GAAGP,MAAM,CAACK,IAAD,EAAOE,qBAAqB,CAACH,EAAD,CAA5B,CAAT,GAA6CC,IAAzE;AACD,CAJD"},"metadata":{},"sourceType":"script"} |