blob: 3db0e5a19b67887e871e17178445c86247c5bb70 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
function a() {
console.log("hello a");
}
function b() {
console.log("hello b");
}
// eslint-disable-next-line @typescript-eslint/no-unused-vars
function c() {
console.log("hello c");
}
a();
b();
b();
|