7 lines
184 B
JavaScript
7 lines
184 B
JavaScript
'use strict';
|
|
|
|
module.exports = (context, badBrowser) => ({
|
|
'ForOfStatement[await=true]'(node) {
|
|
context.report(node, `Async Iteration is not supported in ${badBrowser}`)
|
|
}
|
|
})
|