Initial Save
This commit is contained in:
9
node_modules/graphql/polyfills/objectValues.mjs
generated
vendored
Normal file
9
node_modules/graphql/polyfills/objectValues.mjs
generated
vendored
Normal file
@@ -0,0 +1,9 @@
|
||||
/* eslint-disable no-redeclare */
|
||||
// $FlowFixMe workaround for: https://github.com/facebook/flow/issues/2221
|
||||
var objectValues = Object.values || function (obj) {
|
||||
return Object.keys(obj).map(function (key) {
|
||||
return obj[key];
|
||||
});
|
||||
};
|
||||
|
||||
export default objectValues;
|
||||
Reference in New Issue
Block a user