abfe87a0b69c0b894e76231228dc55704e7f8303dd756d3df6fb54c88ec65894a0c853f9718d10b44cd1cf7fbe0f85e87d48d64e72f3edb81c54582f1d77a7 470 B

123456789101112131415
  1. "use strict";
  2. Object.defineProperty(exports, "__esModule", {
  3. value: true
  4. });
  5. exports.default = isPlaceholderType;
  6. var _index = require("../definitions/index.js");
  7. function isPlaceholderType(placeholderType, targetType) {
  8. if (placeholderType === targetType) return true;
  9. const aliases = _index.PLACEHOLDERS_ALIAS[placeholderType];
  10. if (aliases != null && aliases.includes(targetType)) return true;
  11. return false;
  12. }
  13. //# sourceMappingURL=isPlaceholderType.js.map