Sha256: 23eb63787ffef654880c6c357978e99a41427078fc580598f06247503060e8d9
Contents?: true
Size: 509 Bytes
Versions: 164
Compression:
Stored size: 509 Bytes
Contents
"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) { for (const alias of aliases) { if (targetType === alias) return true; } } return false; } //# sourceMappingURL=isPlaceholderType.js.map
Version data entries
164 entries across 16 versions & 3 rubygems