UNPKG

eswat2

Version:

A personal card for Richard Hess (@eswat2)

10 lines (7 loc) 233 B
#!/usr/bin/env node // 👆 Used to tell Node.js that this is a CLI tool 'use strict' const fs = require('fs') const path = require('path') const output = fs.readFileSync(path.join(__dirname, 'output'), 'utf8') console.log(output)