sview 0.1.3

Agent-friendly structure views of source and document files
Documentation
1
2
3
4
5
6
7
8
9
10
11
export function loadUser(id) {
  return id;
}

export class Client {
  fetch() {
    return loadUser(1);
  }
}

const helper = () => true;