UNPKG

valence-test

Version:

Test applications running in Valence and 5250 screens with Fusion5250

12 lines (11 loc) 273 B
module.exports = { /** * check if is empty * @param value * @returns {boolean} */ isEmpty : (value) => { return (value == null) || (value === '') || (toString.call(value) === '[object Array]' && value.length === 0); } };