UNPKG

279 BJavaScriptView Raw
1/* eslint-disable no-redeclare */
2// $FlowFixMe workaround for: https://github.com/facebook/flow/issues/5838
3var objectEntries = Object.entries || function (obj) {
4 return Object.keys(obj).map(function (key) {
5 return [key, obj[key]];
6 });
7};
8
9export default objectEntries;