functionisNullOrEmpty(input) {
// Returns true if the input is either undefined, null, or empty, false otherwisereturn (input === undefined || input === null || input === '');
}
// Export to make the function available to other packagesmodule.exports = isNullOrEmpty;