Timothy J. Warren 8c54ceb104
All checks were successful
timw4mail/scroll/pipeline/head This commit looks good
Add shell scripts to run without just, fix the issue with bun and tsx failing to exit
2024-07-12 15:33:03 -04:00

10 lines
261 B
JavaScript

/**
* Re-export of node apis shared by runtimes
*/
import node_assert from 'node:assert';
import node_path from 'node:path';
import node_process from 'node:process';
import node_tty from 'node:tty';
export { node_assert, node_path, node_process, node_tty };