19 lines
514 B
TypeScript
19 lines
514 B
TypeScript
import type { RuntimeEnv } from "../../runtime.js";
|
|
import type { MonitorIMessageOpts } from "./types.js";
|
|
|
|
export function resolveRuntime(opts: MonitorIMessageOpts): RuntimeEnv {
|
|
return (
|
|
opts.runtime ?? {
|
|
log: console.log,
|
|
error: console.error,
|
|
exit: (code: number): never => {
|
|
throw new Error(`exit ${code}`);
|
|
},
|
|
}
|
|
);
|
|
}
|
|
|
|
export function normalizeAllowList(list?: Array<string | number>) {
|
|
return (list ?? []).map((entry) => String(entry).trim()).filter(Boolean);
|
|
}
|