UNPKG

271 BJavaScriptView Raw
1var fs = require('fs')
2var filePath = process.argv[2]
3
4const handler = function (stat) {
5 if (stat && stat.birthtime.getTime() > 0) {
6 process.exit(0)
7 }
8}
9
10fs.watchFile(filePath, { interval: 100 }, handler)
11fs.stat(filePath, function (err, stat) { handler(stat) })