mirror of
https://github.com/hashicorp/vault.git
synced 2025-08-24 08:01:07 +02:00
9 lines
262 B
JavaScript
9 lines
262 B
JavaScript
import { helper } from '@ember/component/helper';
|
|
|
|
export default helper(function isEmptyValue([value] /*, hash*/) {
|
|
if (typeof value === 'object' && value !== null) {
|
|
return Object.keys(value).length === 0;
|
|
}
|
|
return value == null || value === '';
|
|
});
|