med-notes/.pnpm-store/v10/files/7c/abfe87a0b69c0b894e76231228dc55704e7f8303dd756d3df6fb54c88ec65894a0c853f9718d10b44cd1cf7fbe0f85e87d48d64e72f3edb81c54582f1d77a7
2025-05-09 05:30:08 +02:00

16 lines
470 B
Plaintext

"use strict";
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.default = isPlaceholderType;
var _index = require("../definitions/index.js");
function isPlaceholderType(placeholderType, targetType) {
if (placeholderType === targetType) return true;
const aliases = _index.PLACEHOLDERS_ALIAS[placeholderType];
if (aliases != null && aliases.includes(targetType)) return true;
return false;
}
//# sourceMappingURL=isPlaceholderType.js.map