@medusajs/utils
Version:
Medusa utilities functions shared by Medusa core and Modules
9 lines • 371 B
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
exports.removeUndefined = void 0;
// useful in cases where presence of undefined is not desired (eg. in microORM operations)
const removeUndefined = (obj) => {
return JSON.parse(JSON.stringify(obj));
};
exports.removeUndefined = removeUndefined;
//# sourceMappingURL=remove-undefined.js.map
;