UNPKG

isset

Version:

Determine if a variable is set and is not NULL

8 lines (7 loc) 197 B
module.exports = function isset(string) { if (typeof string === 'string') { return string.trim().length > 0; } else { return !(typeof string === 'undefined' || string === null); } };