UNPKG

@sebastianwessel/quickjs

Version:

A typescript package to execute JavaScript and TypeScript code in a WebAssembly QuickJS sandbox

7 lines (6 loc) 210 B
export const getMaxTimeoutAmount = (runtimeOptions) => { if (!runtimeOptions.maxTimeoutCount || runtimeOptions.maxTimeoutCount <= 0) { return 10; } return runtimeOptions.maxTimeoutCount; };