mirror of
https://github.com/github/codeql.git
synced 2025-12-17 09:13:20 +01:00
8 lines
218 B
JavaScript
8 lines
218 B
JavaScript
import { source1 as whoKnowsWhetherThisIsTainted, notTaintedTrustMe, x } from './a';
|
|
import deflt from './a';
|
|
|
|
let sink1 = whoKnowsWhetherThisIsTainted;
|
|
let sink2 = notTaintedTrustMe;
|
|
let sink3 = x;
|
|
let sink4 = deflt;
|