Document VS Code endpoints

This commit is contained in:
Asher
2020-11-03 16:30:45 -06:00
parent e5c8e0aad1
commit 210fc049c4
2 changed files with 13 additions and 0 deletions

View File

@ -32,6 +32,9 @@ router.get("/(:commit)(/*)?", async (req, res) => {
res.header("Cache-Control", "public, max-age=31536000")
}
/**
* Used by VS Code to load extensions into the web worker.
*/
const tar = Array.isArray(req.query.tar) ? req.query.tar[0] : req.query.tar
if (typeof tar === "string") {
let stream: Readable = tarFs.pack(pathToFsPath(tar))