diff options
Diffstat (limited to 'includes/external/school/node_modules/graphql/polyfills/objectValues.mjs')
-rw-r--r-- | includes/external/school/node_modules/graphql/polyfills/objectValues.mjs | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/includes/external/school/node_modules/graphql/polyfills/objectValues.mjs b/includes/external/school/node_modules/graphql/polyfills/objectValues.mjs deleted file mode 100644 index afbde06..0000000 --- a/includes/external/school/node_modules/graphql/polyfills/objectValues.mjs +++ /dev/null @@ -1,9 +0,0 @@ -/* eslint-disable no-redeclare */ -// $FlowFixMe[name-already-bound] workaround for: https://github.com/facebook/flow/issues/4441 -var objectValues = Object.values || function (obj) { - return Object.keys(obj).map(function (key) { - return obj[key]; - }); -}; - -export default objectValues; |