UNPKG

265 BJavaScriptView Raw
1"use strict";
2
3exports.__esModule = true;
4exports.default = isCssTag;
5
6function isCssTag(tagPath, {
7 tagName,
8 allowGlobal
9}) {
10 return tagPath.node.name === tagName && (tagPath.referencesImport('astroturf') || allowGlobal && tagPath.scope.hasGlobal(tagName));
11}
\No newline at end of file