UNPKG

on-exit

Version:

Register tasks to perform when the process exits.

12 lines (9 loc) 151 B
var onExit = require('../'); function send(val) { return function() { process.send(val); }; } onExit(send(1)); onExit(send(2)); onExit(send(3));