UNPKG

@atlaskit/eslint-plugin-design-system

Version:

The essential plugin for use with the Atlassian Design System.

8 lines 217 B
/** * Returns true if the element has any JSXSpreadAttribute. */ export function hasSpreadProps(node) { return node.openingElement.attributes.some(function (a) { return a.type === 'JSXSpreadAttribute'; }); }