=========================================================== .___ __ __ _________________ __ __ __| _/|__|/ |_ / ___\_` __ \__ \ | | \/ __ | | \\_ __\ / /_/ > | \// __ \| | / /_/ | | || | \___ /|__| (____ /____/\____ | |__||__| /_____/ \/ \/ grep rough audit - static analysis tool v2.8 written by @Wireghoul =================================[justanotherhacker.com]=== node-eslint-utils-2.0.0/docs/api/ast-utils.md-292- node-eslint-utils-2.0.0/docs/api/ast-utils.md:293:;`on${eventName} : ${aMap[eventName]}` // evaluated to "onclick : 777" node-eslint-utils-2.0.0/docs/api/ast-utils.md-294-``` ############################################## node-eslint-utils-2.0.0/src/get-function-name-with-kind.js-42- if (node.id) { node-eslint-utils-2.0.0/src/get-function-name-with-kind.js:43: tokens.push(`'${node.id.name}'`) node-eslint-utils-2.0.0/src/get-function-name-with-kind.js-44- } else { ############################################## node-eslint-utils-2.0.0/src/get-function-name-with-kind.js-47- if (name) { node-eslint-utils-2.0.0/src/get-function-name-with-kind.js:48: tokens.push(`'${name}'`) node-eslint-utils-2.0.0/src/get-function-name-with-kind.js-49- } ############################################## node-eslint-utils-2.0.0/src/get-string-if-constant.js-12- if (node.regex) { node-eslint-utils-2.0.0/src/get-string-if-constant.js:13: return `/${node.regex.pattern}/${node.regex.flags}` node-eslint-utils-2.0.0/src/get-string-if-constant.js-14- } ############################################## node-eslint-utils-2.0.0/test/get-function-name-with-kind.js-51- for (const key of Object.keys(expectedResults)) { node-eslint-utils-2.0.0/test/get-function-name-with-kind.js:52: it(`should return "${expectedResults[key]}" for "${key}".`, () => { node-eslint-utils-2.0.0/test/get-function-name-with-kind.js-53- const linter = new eslint.Linter() ############################################## node-eslint-utils-2.0.0/test/get-innermost-scope.js-56- ]) { node-eslint-utils-2.0.0/test/get-innermost-scope.js:57: it(`should return the innermost scope (${++i})`, () => { node-eslint-utils-2.0.0/test/get-innermost-scope.js-58- const linter = new eslint.Linter() ############################################## node-eslint-utils-2.0.0/test/get-property-name.js-13- { code: "a[tag`b`]", expected: null }, node-eslint-utils-2.0.0/test/get-property-name.js:14: { code: "a[`${b}`]", expected: null }, //eslint-disable-line no-template-curly-in-string node-eslint-utils-2.0.0/test/get-property-name.js-15- { code: "({b: 1})", expected: "b" }, ############################################## node-eslint-utils-2.0.0/test/get-property-name.js-26- { code: "({[tag`b`]: 1})", expected: null }, node-eslint-utils-2.0.0/test/get-property-name.js:27: { code: "({[`${b}`]: 1})", expected: null }, //eslint-disable-line no-template-curly-in-string node-eslint-utils-2.0.0/test/get-property-name.js-28- { code: "(class {b() {}})", expected: "b" }, ############################################## node-eslint-utils-2.0.0/test/get-property-name.js-34- { code: "(class {[tag`b`]() {}})", expected: null }, node-eslint-utils-2.0.0/test/get-property-name.js:35: { code: "(class {[`${b}`]() {}})", expected: null }, //eslint-disable-line no-template-curly-in-string node-eslint-utils-2.0.0/test/get-property-name.js-36- ]) { node-eslint-utils-2.0.0/test/get-property-name.js:37: it(`should return ${JSON.stringify(expected)} from ${code}`, () => { node-eslint-utils-2.0.0/test/get-property-name.js-38- const linter = new eslint.Linter() ############################################## node-eslint-utils-2.0.0/test/get-static-value.js-96- { code: "`hello`", expected: { value: "hello" } }, node-eslint-utils-2.0.0/test/get-static-value.js:97: { code: "const ll = 'll'; `he${ll}o`", expected: { value: "hello" } }, //eslint-disable-line no-template-curly-in-string node-eslint-utils-2.0.0/test/get-static-value.js-98- { code: "String.raw`\\unicode`", expected: { value: "\\unicode" } }, node-eslint-utils-2.0.0/test/get-static-value.js:99: { code: "`he${a}o`", expected: null }, //eslint-disable-line no-template-curly-in-string node-eslint-utils-2.0.0/test/get-static-value.js-100- { code: "x`hello`", expected: null }, ############################################## node-eslint-utils-2.0.0/test/get-static-value.js-115-}) node-eslint-utils-2.0.0/test/get-static-value.js:116:;\`on\${eventName} : \${aMap[eventName]}\``, node-eslint-utils-2.0.0/test/get-static-value.js-117- expected: { value: "onclick : 777" }, ############################################## node-eslint-utils-2.0.0/test/get-static-value.js-146- ]) { node-eslint-utils-2.0.0/test/get-static-value.js:147: it(`should return ${JSON.stringify(expected)} from ${code}`, () => { node-eslint-utils-2.0.0/test/get-static-value.js-148- const linter = new eslint.Linter() ############################################## node-eslint-utils-2.0.0/test/get-string-if-constant.js-18- { code: "tag`foo`", expected: null }, node-eslint-utils-2.0.0/test/get-string-if-constant.js:19: { code: "`aaa${id}bbb`", expected: null }, //eslint-disable-line no-template-curly-in-string node-eslint-utils-2.0.0/test/get-string-if-constant.js-20- { code: "1 + 2", expected: "3" }, ############################################## node-eslint-utils-2.0.0/test/get-string-if-constant.js-23- ]) { node-eslint-utils-2.0.0/test/get-string-if-constant.js:24: it(`should return ${JSON.stringify(expected)} from ${code}`, () => { node-eslint-utils-2.0.0/test/get-string-if-constant.js-25- const linter = new eslint.Linter() ############################################## node-eslint-utils-2.0.0/test/get-string-if-constant.js-49- ]) { node-eslint-utils-2.0.0/test/get-string-if-constant.js:50: it(`should return ${JSON.stringify(expected)} from ${code}`, () => { node-eslint-utils-2.0.0/test/get-string-if-constant.js-51- const linter = new eslint.Linter() ############################################## node-eslint-utils-2.0.0/test/has-side-effect.js-227- ]) { node-eslint-utils-2.0.0/test/has-side-effect.js:228: it(`should return ${expected} on the code \`${code}\` and the options \`${JSON.stringify( node-eslint-utils-2.0.0/test/has-side-effect.js-229- options ############################################## node-eslint-utils-2.0.0/test/is-parenthesized.js-206- ]) { node-eslint-utils-2.0.0/test/is-parenthesized.js:207: describe(`on the code \`${code}\``, () => { node-eslint-utils-2.0.0/test/is-parenthesized.js-208- for (const key of Object.keys(expected)) { node-eslint-utils-2.0.0/test/is-parenthesized.js:209: it(`should return ${expected[key]} at "${key}"`, () => { node-eslint-utils-2.0.0/test/is-parenthesized.js-210- const linter = new eslint.Linter() ############################################## node-eslint-utils-2.0.0/test/is-parenthesized.js-281- ]) { node-eslint-utils-2.0.0/test/is-parenthesized.js:282: describe(`on the code \`${code}\` and 2 times`, () => { node-eslint-utils-2.0.0/test/is-parenthesized.js-283- for (const key of Object.keys(expected)) { node-eslint-utils-2.0.0/test/is-parenthesized.js:284: it(`should return ${expected[key]} at "${key}"`, () => { node-eslint-utils-2.0.0/test/is-parenthesized.js-285- const linter = new eslint.Linter() ############################################## node-eslint-utils-2.0.0/test/pattern-matcher.js-239- ]) { node-eslint-utils-2.0.0/test/pattern-matcher.js:240: it(`should return ${expected} in ${JSON.stringify(str)}.`, () => { node-eslint-utils-2.0.0/test/pattern-matcher.js-241- const matcher = new PatternMatcher(/foo/gu) ############################################## node-eslint-utils-2.0.0/test/token-predicate.js-137- node-eslint-utils-2.0.0/test/token-predicate.js:138: describe(`'is${baseName}'`, () => { node-eslint-utils-2.0.0/test/token-predicate.js-139- for (const [token, expected] of patterns) { ############################################## node-eslint-utils-2.0.0/test/token-predicate.js-147- node-eslint-utils-2.0.0/test/token-predicate.js:148: describe(`'isNot${baseName}'`, () => { node-eslint-utils-2.0.0/test/token-predicate.js-149- for (const [token, expected] of patterns) { ############################################## node-eslint-utils-2.0.0/.pc/2002_avoid_rollup-plugin-sourcemaps.patch/rollup.config.js-15- output: { node-eslint-utils-2.0.0/.pc/2002_avoid_rollup-plugin-sourcemaps.patch/rollup.config.js:16: file: `index${ext}`, node-eslint-utils-2.0.0/.pc/2002_avoid_rollup-plugin-sourcemaps.patch/rollup.config.js-17- format: ext === ".mjs" ? "es" : "cjs", ############################################## node-eslint-utils-2.0.0/rollup.config.js-15- output: { node-eslint-utils-2.0.0/rollup.config.js:16: file: `index${ext}`, node-eslint-utils-2.0.0/rollup.config.js-17- format: ext === ".mjs" ? "es" : "cjs",