UNPKG

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