mirror of
https://github.com/Instadapp/Swap-Aggregator-Subgraph.git
synced 2024-07-29 21:57:12 +00:00
10 lines
289 B
JavaScript
10 lines
289 B
JavaScript
/* 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;
|