mirror of
https://github.com/status-im/consul.git
synced 2025-01-12 14:55:02 +00:00
11 lines
236 B
JavaScript
11 lines
236 B
JavaScript
|
import { helper } from '@ember/component/helper';
|
||
|
|
||
|
export function _default(params, hash) {
|
||
|
if (params[0] === '' || typeof params[0] === 'undefined') {
|
||
|
return params[1];
|
||
|
}
|
||
|
return params[0];
|
||
|
}
|
||
|
|
||
|
export default helper(_default);
|