"use strict";
Object.defineProperty(exports, "__esModule", {
value: true,
});
exports.stringIsNullOrEmpty = void 0;
function stringIsNullOrEmpty(value) {
return value == undefined || (typeof value === "string" && value.trim() === "");
}
exports.stringIsNullOrEmpty = stringIsNullOrEmpty;