open-vault/ui/app/helpers/is-empty-value.js
Arnav Palnitkar a21ad2ffe2
Hide fields that are empty in secrets configuration (#11230)
Updated the existing helper to check for empty object, string,
null or undefined
2021-03-31 15:34:20 -07:00

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 === '';
});