UNPKG

eslint-plugin-mocha

Version:

Eslint rules for mocha.

8 lines 477 B
import { collectCallbackHandlingNodes } from "./callback-handling-node-collector.js"; import { getCodeAfterCallbackHandlingNode } from "./callback-handling-state.js"; export function collectCodeAfterCallbackHandlingNodes(context) { return collectCallbackHandlingNodes(context, function (_context, pathState, operation) { return getCodeAfterCallbackHandlingNode(context.sourceCode, pathState, operation); }); } //# sourceMappingURL=callback-handling-paths.js.map