`function test() {}` is shown as `f(x) test` but `export function test() {}` is shown as `test`. I guess it should have `f(x)` prefix as well?
function test() {}is shown asf(x) testbut
export function test() {}is shown astest.I guess it should have
f(x)prefix as well?