renovate
Version:
Automated dependency updates. Flexible so you don't need to be.
11 lines • 323 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.coerceToNull = coerceToNull;
exports.coerceToUndefined = coerceToUndefined;
function coerceToNull(input) {
return input ?? null;
}
function coerceToUndefined(input) {
return input ?? undefined;
}
//# sourceMappingURL=coerce.js.map