(file:string)
| 39 | |
| 40 | /** Using the inferred workspace from the file path, return the contents of the file. */ |
| 41 | export function find(file:string):string|undefined { |
| 42 | let workspace = getWorkspaceFromPath(file); |
| 43 | if(!workspace) return; |
| 44 | |
| 45 | return get(file, workspace); |
| 46 | } |
| 47 | |
| 48 | /** Given an explicit workspace, update the contents of the file. */ |
| 49 | export function set(file:string, content:string, workspace = "eve") { |
nothing calls this directly
no test coverage detected