new_app/utils/util.js

3 lines
77 B
JavaScript

export function isEmpty(val){
return val===null||val===undefined||val===''
}