mirror of
https://github.com/github/codeql.git
synced 2025-12-17 17:23:36 +01:00
16 lines
190 B
JavaScript
16 lines
190 B
JavaScript
import { foo, bar as baz } from 'foobar';
|
|
|
|
console.log(
|
|
foo +
|
|
bar +
|
|
baz +
|
|
quux
|
|
);
|
|
|
|
import { quux } from 'outside';
|
|
|
|
f();
|
|
g();
|
|
|
|
export function f() {};
|
|
export default function g() {}; |