mirror of
https://github.com/github/codeql-action.git
synced 2026-01-02 20:50:05 +08:00
6 lines
169 B
JavaScript
6 lines
169 B
JavaScript
module.exports = (context, badBrowser) => ({
|
|
'ForOfStatement[await=true]'(node) {
|
|
context.report(node, `Async Iteration is not supported in ${badBrowser}`)
|
|
}
|
|
})
|