mirror of
https://github.com/status-im/consul.git
synced 2025-01-09 13:26:07 +00:00
11 lines
217 B
JavaScript
11 lines
217 B
JavaScript
import { helper } from '@ember/component/helper';
|
|
|
|
export function objectEntries([obj = {}] /*, hash*/) {
|
|
if (obj == null) {
|
|
return [];
|
|
}
|
|
return Object.entries(obj);
|
|
}
|
|
|
|
export default helper(objectEntries);
|