Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
quarto-dev
GitHub Repository: quarto-dev/quarto-cli
Path: blob/main/src/deno_ral/process.ts
6449 views
1
/*
2
* process.ts
3
*
4
* Copyright (C) 2025 Posit Software, PBC
5
*/
6
7
export const call = async (path: string, opts: Deno.CommandOptions = {}) => {
8
const cmd = new Deno.Command(path, opts);
9
return cmd.output();
10
};
11
12