All checks were successful
timw4mail/scroll/pipeline/head This commit looks good
10 lines
261 B
JavaScript
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 };
|