11 lines
168 B
JavaScript
11 lines
168 B
JavaScript
/**
|
|
* send
|
|
*
|
|
* @name send
|
|
* @function send packet to worker and create a job
|
|
* @access public
|
|
*/
|
|
module.exports = (worker, packet) => {
|
|
worker.send(packet);
|
|
};
|