UNPKG

ember-cli

Version:

Command line tool for developing ambitious ember.js apps

10 lines (8 loc) 185 B
'use strict'; module.exports = function(childProcess) { if (process.platform === 'win32') { childProcess.send({ kill: true }); } else { childProcess.kill('SIGINT'); } };