mirror of
https://github.com/CamHenlin/MessagesForMacintosh.git
synced 2025-02-18 05:30:26 +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;
|