@atlaskit/eslint-plugin-design-system
Version:
The essential plugin for use with the Atlassian Design System.
10 lines (9 loc) • 321 B
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.isChildOfType = void 0;
var _eslintCodemodUtils = require("eslint-codemod-utils");
var isChildOfType = exports.isChildOfType = function isChildOfType(node, type) {
return (0, _eslintCodemodUtils.isNodeOfType)(node.parent, type);
};