mirror of
https://github.com/github/codeql-action.git
synced 2025-12-29 18:50:25 +08:00
6 lines
157 B
JavaScript
6 lines
157 B
JavaScript
module.exports = (context, badBrowser) => ({
|
|
BindExpression(node) {
|
|
context.report(node, `The Bind Operator is not supported in ${badBrowser}`)
|
|
}
|
|
})
|