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

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}`)
}
})