mirror of https://github.com/hashicorp/consul
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);
|