UNPKG

@atlaskit/eslint-plugin-design-system

Version:

The essential plugin for use with the Atlassian Design System.

9 lines 229 B
export const isDecendantOfType = (node, type, skipNode = true) => { if (!skipNode && node.type === type) { return true; } if (node.parent) { return isDecendantOfType(node.parent, type, false); } return false; };