UNPKG

shokk

Version:

Ernest Oporto's terminal business card (@shokk)

9 lines (6 loc) 244 B
#!/usr/bin/env node // 👆 Used to tell Node.js that this is a CLI tool import { readFileSync } from 'node:fs'; import { join } from 'node:path'; const output = readFileSync(join(import.meta.dirname, 'output'), 'utf8'); console.log(output);