mirror of
https://github.com/github/codeql-action.git
synced 2026-05-17 08:40:16 +00:00
6 lines
180 B
JavaScript
6 lines
180 B
JavaScript
module.exports = (context, badBrowser) => ({
|
|
'BinaryExpression[operator="|>"]'(node) {
|
|
context.report(node, `The Pipeline Operator is not supported in ${badBrowser}`)
|
|
}
|
|
})
|