{"version":3,"file":"commons-app-ownKeys.js.499076767ed67358a34c.js","mappings":"0KACe,SAASA,EAAQC,GAC9B,IAAI,OAAMA,GAQR,OAAOC,MAAMC,KAAKF,EAAOG,QAG3B,GAAuB,qBAAZC,SAAsD,oBAApBA,QAAQL,QACnD,OAAOK,QAAQL,QAAQC,GAGzB,IAAIG,EAAOE,OAAOC,oBAAoBN,GAMtC,MAJ4C,oBAAjCK,OAAOE,wBAChBJ,EAAOA,EAAKK,OAAOH,OAAOE,sBAAsBP,KAG3CG,CACT,C","sources":["webpack://grfanclub-webview/./node_modules/redux-actions/es/utils/ownKeys.js"],"sourcesContent":["import isMap from './isMap';\nexport default function ownKeys(object) {\n if (isMap(object)) {\n // We are using loose transforms in babel. Here we are trying to convert an\n // interable to an array. Loose mode expects everything to already be an\n // array. The problem is that our eslint rules encourage us to prefer\n // spread over Array.from.\n //\n // Instead of disabling loose mode we simply disable the warning.\n // eslint-disable-next-line unicorn/prefer-spread\n return Array.from(object.keys());\n }\n\n if (typeof Reflect !== 'undefined' && typeof Reflect.ownKeys === 'function') {\n return Reflect.ownKeys(object);\n }\n\n var keys = Object.getOwnPropertyNames(object);\n\n if (typeof Object.getOwnPropertySymbols === 'function') {\n keys = keys.concat(Object.getOwnPropertySymbols(object));\n }\n\n return keys;\n}"],"names":["ownKeys","object","Array","from","keys","Reflect","Object","getOwnPropertyNames","getOwnPropertySymbols","concat"],"sourceRoot":""}