mirror of
https://github.com/github/codeql-action.git
synced 2026-01-03 21:20:09 +08:00
6 lines
151 B
JavaScript
6 lines
151 B
JavaScript
module.exports = (context, badBrowser) => ({
|
|
'Literal[bigint]'(node) {
|
|
context.report(node, `BigInts are not supported in ${badBrowser}`)
|
|
}
|
|
})
|