Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.
_Server.prototype.scheduleMsg = function(secondsFromNow, address, args) {
this.udp.send({
timeTag: osc.timeTag(secondsFromNow),
packets: [{
address: address,
args: args
}]
}, this.options.sHost, this.options.sPortNum);
}