codeql-action/node_modules/eslint-plugin-escompat/lib/rules/no-async-generator.js
2024-12-03 18:37:29 +00:00

7 lines
197 B
JavaScript

'use strict';
module.exports = (context, badBrowser) => ({
':function[async=true][generator=true]'(node) {
context.report(node, `Async Generators are not supported in ${badBrowser}`)
}
})