UNPKG

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