mirror of
https://github.com/github/codeql.git
synced 2025-12-17 09:13:20 +01:00
9 lines
168 B
JavaScript
9 lines
168 B
JavaScript
let source1 = "tainted";
|
|
let source2 = "also tainted";
|
|
|
|
export { source1, source2 as notTaintedTrustMe };
|
|
export let x = "not tainted";
|
|
export default x;
|
|
|
|
x = source1;
|