UNPKG

jasmine

Version:

CLI for Jasmine, a simple JavaScript testing framework for browsers and Node

16 lines (12 loc) 236 B
class ExitHandler { constructor(onExit) { this._onExit = onExit; } install() { process.on('exit', this._onExit); } uninstall() { process.removeListener('exit', this._onExit); } } module.exports = ExitHandler;