UNPKG

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