mirror of
https://github.com/github/codeql-action.git
synced 2026-04-29 10:28:52 +00:00
6 lines
182 B
JavaScript
6 lines
182 B
JavaScript
module.exports = (context, badBrowser) => ({
|
|
':function[async=true][generator=true]'(node) {
|
|
context.report(node, `Async Generators are not supported in ${badBrowser}`)
|
|
}
|
|
})
|