(s: string)
| 1283 | } |
| 1284 | |
| 1285 | function toPascalCase(s: string): string { |
| 1286 | return fixBrandCasing( |
| 1287 | s |
| 1288 | .split(/[._]/) |
| 1289 | .map((w) => w.charAt(0).toUpperCase() + w.slice(1)) |
| 1290 | .join("") |
| 1291 | ); |
| 1292 | } |
| 1293 | |
| 1294 | function collectRpcMethods(node: Record<string, unknown>): RpcMethod[] { |
| 1295 | const results: RpcMethod[] = []; |
no test coverage detected
searching dependent graphs…