UNPKG

genkitx-patientseek

Version:

A community plugin for Firebase Genkit to integrate DeepSeek medical models.

12 lines 322 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.removeEmptyKeys = removeEmptyKeys; function removeEmptyKeys(obj) { for (const key of Object.keys(obj)) { if (obj[key] == null) { delete obj[key]; } } return obj; } //# sourceMappingURL=utils.js.map