UNPKG

@atlaskit/eslint-plugin-design-system

Version:

The essential plugin for use with the Atlassian Design System.

6 lines 174 B
/** * Returns the first import in the esprima AST. */ export const getFirstImport = source => { return source.ast.body.find(node => node.type === 'ImportDeclaration'); };