@cloudinary/url-gen
Version:
Cloudinary URL-Gen SDK ========================= [](https://app.travis-ci.com/github/cloudinary/js-url-gen) ## About The Cloudinary URL-Gen SDK allows you to quickly and eas
13 lines (9 loc) • 335 B
JavaScript
;
Object.defineProperty(exports, '__esModule', { value: true });
function isEmpty(value) {
return value === undefined ||
value === null ||
(typeof value === "object" && Object.keys(value).length === 0) ||
(typeof value === "string" && value.trim().length === 0);
}
exports.isEmpty = isEmpty;