UNPKG

179 BJavaScriptView Raw
1// Without this line, you'll get an EPIPE error on:
2// 'node example.js | head'
3require('./epipebomb.js')()
4
5;(function log() {
6 console.log('tick')
7 process.nextTick(log)
8})()