1/* 2 * This file is part of CoCalc: Copyright © 2020 Sagemath, Inc. 3 * License: MS-RSL – see LICENSE.md for details 4 */ 5 6export async function eval_code(code: string): Promise<any> { 7 return await eval(code); 8} 9 10