UNPKG

@atlaskit/eslint-plugin-design-system

Version:

The essential plugin for use with the Atlassian Design System.

8 lines 220 B
/** * Returns the first import in the esprima AST. */ export var getFirstImport = function getFirstImport(source) { return source.ast.body.find(function (node) { return node.type === 'ImportDeclaration'; }); };