@atlaskit/eslint-plugin-design-system
Version:
The essential plugin for use with the Atlassian Design System.
14 lines (13 loc) • 331 B
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.hasSpreadProps = hasSpreadProps;
/**
* Returns true if the element has any JSXSpreadAttribute.
*/
function hasSpreadProps(node) {
return node.openingElement.attributes.some(function (a) {
return a.type === 'JSXSpreadAttribute';
});
}