Guest User

Untitled

a guest
Aug 21st, 2018
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. fs = require 'fs'
  2.  
  3. a =
  4.   readTempTest: ->
  5.     fs.open 'tmptst4', 'a', '0600', parseTempTest
  6.   parseTempTest: (err, fd) ->
  7.     console.log "asd"
  8.     console.log fd
  9.     console.log "fgh"
  10.  
  11. a.readTempTest()
Add Comment
Please, Sign In to add comment