GenerAI / worldmonitor /src /shims /child-process.ts
amogaddy's picture
Integra World Monitor (AGPL-3.0, self-hosted) nello Space: pagina, menu, e arricchimento notizie per la AI (part 8)
dbb1bf9 verified
Raw
History Blame Contribute Delete
275 Bytes
/**
* Browser shim for Node's `child_process` module.
* Some transitive dependencies reference it even in browser bundles.
*/
export function spawn(): never {
throw new Error('child_process.spawn is not available in browser environments.');
}
export default { spawn };