UNPKG

eslint-plugin-mocha

Version:

Eslint rules for mocha.

5 lines 239 B
import { isReturnOfUndefined } from "../ast/return-statement.js"; export function isLiteralOrUndefinedReturn(node) { return isReturnOfUndefined(node) || node.argument?.type === 'Literal'; } //# sourceMappingURL=mocha-return-rule.js.map