codeql-action/node_modules/eslint-plugin-escompat/lib/rules/no-bigint.js
2024-12-03 18:37:29 +00:00

7 lines
166 B
JavaScript

'use strict';
module.exports = (context, badBrowser) => ({
'Literal[bigint]'(node) {
context.report(node, `BigInts are not supported in ${badBrowser}`)
}
})