UNPKG

javascript-code-runner

Version:

Run your JavaScript code snippets in the browser. A sandboxed JavaScript interpreter.

7 lines (6 loc) 158 B
declare type Props = { result: string | null; message: string | null; }; export declare const JSrunner: (code: string) => Props; export default JSrunner;