/** * send * * @name send * @function send packet to worker and create a job * @access public */ module.exports = async (worker, packet) => { worker.postMessage(packet); };