objectValues.js 404 B

1234567891011121314151617
  1. "use strict";
  2. Object.defineProperty(exports, "__esModule", {
  3. value: true
  4. });
  5. exports.default = void 0;
  6. /* eslint-disable no-redeclare */
  7. // $FlowFixMe workaround for: https://github.com/facebook/flow/issues/2221
  8. var objectValues = Object.values || function (obj) {
  9. return Object.keys(obj).map(function (key) {
  10. return obj[key];
  11. });
  12. };
  13. var _default = objectValues;
  14. exports.default = _default;