UNPKG

@cocalc/project

Version:
10 lines (8 loc) 331 B
/* * This file is part of CoCalc: Copyright © 2020 Sagemath, Inc. * License: AGPLv3 s.t. "Commons Clause" – see LICENSE.md for details */ import { exec as cp_exec, spawn as cp_spawn } from "child_process"; import { promisify } from "util"; export const exec = promisify(cp_exec); export const spawn = promisify(cp_spawn);