UNPKG

359 BJavaScriptView Raw
1"use strict";
2
3exports.__esModule = true;
4exports.default = isStyledTagShorthand;
5
6function isStyledTagShorthand(tagPath, {
7 styledTag,
8 allowGlobal
9}) {
10 return tagPath.isMemberExpression() && tagPath.get('property').isIdentifier() && tagPath.get('object').node.name === styledTag && (allowGlobal || tagPath.get('object').referencesImport('astroturf'));
11}
\No newline at end of file