5 lines
182 B
JavaScript
5 lines
182 B
JavaScript
module.exports = (context, badBrowser) => ({
|
|
':function[async=true][generator=true]'(node) {
|
|
context.report(node, `Async Generators are not supported in ${badBrowser}`)
|
|
}
|
|
})
|