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