mirror of
https://github.com/status-im/consul.git
synced 2025-02-05 02:16:09 +00:00
8 lines
177 B
JavaScript
8 lines
177 B
JavaScript
|
import { helper } from '@ember/component/helper';
|
||
|
|
||
|
export function objectEntries([obj = {}] /*, hash*/) {
|
||
|
return Object.entries(obj);
|
||
|
}
|
||
|
|
||
|
export default helper(objectEntries);
|