11 lines
159 B
JavaScript
11 lines
159 B
JavaScript
/**
|
|
* terminateWorker
|
|
*
|
|
* @name terminateWorker
|
|
* @function terminate worker
|
|
* @access public
|
|
*/
|
|
module.exports = (worker) => {
|
|
worker.terminate();
|
|
};
|