@atlaskit/eslint-plugin-design-system
Version:
The essential plugin for use with the Atlassian Design System.
14 lines (13 loc) • 351 B
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.getFirstImport = void 0;
/**
* Returns the first import in the esprima AST.
*/
var getFirstImport = exports.getFirstImport = function getFirstImport(source) {
return source.ast.body.find(function (node) {
return node.type === 'ImportDeclaration';
});
};