github-pages-deploy-action/node_modules/graphql/polyfills/objectEntries.mjs
2020-03-06 22:45:40 -05:00

10 lines
279 B
JavaScript

/* eslint-disable no-redeclare */
// $FlowFixMe workaround for: https://github.com/facebook/flow/issues/5838
var objectEntries = Object.entries || function (obj) {
return Object.keys(obj).map(function (key) {
return [key, obj[key]];
});
};
export default objectEntries;