mirror of
https://github.com/oven-sh/bun
synced 2026-02-02 15:08:46 +00:00
6 lines
166 B
JavaScript
6 lines
166 B
JavaScript
import { resolve } from "path";
|
|
const { write, stdout, file } = Bun;
|
|
const input = resolve(process.argv[process.argv.length - 1]);
|
|
|
|
await write(stdout, file(input));
|