Guest User

Untitled

a guest
Apr 20th, 2018
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1. const readFile = require('fs').readFile
  2. const log = console.log
  3.  
  4. module.exports = (fileName, cb) => {
  5. readFile(fileName, 'utf8', (err, userName) => {
  6. if (err) return cb(err)
  7.  
  8. log(`Hi, ${userName}!`)
  9.  
  10. cb(null)
  11. })
  12. }
Add Comment
Please, Sign In to add comment