(r: FoamRange)
| 26 | new Position(p.line, p.character); |
| 27 | |
| 28 | export const toVsCodeRange = (r: FoamRange): Range => |
| 29 | new Range(r.start.line, r.start.character, r.end.line, r.end.character); |
| 30 | |
| 31 | export const toVsCodeUri = (u: FoamURI): Uri => Uri.from(u); |
| 32 |
no outgoing calls
no test coverage detected