UNPKG

@atlaskit/eslint-plugin-design-system

Version:

The essential plugin for use with the Atlassian Design System.

9 lines 282 B
/** * Returns the static string value of a JSXAttribute, or undefined if dynamic. */ export function getStaticAttributeValue(attr) { if (attr.value && attr.value.type === 'Literal' && typeof attr.value.value === 'string') { return attr.value.value; } return undefined; }