UNPKG

adrianpedev

Version:
9 lines (6 loc) 224 B
#!/usr/bin/env node // 👆 Used to tell Node.js that this is a CLI tool const fs = require('fs'); const path = require('path'); const output = fs.readFileSync(path.join(__dirname, 'output'), 'utf8'); console.log(output);