Socket
Socket
Sign inDemoInstall

osc-js

Package Overview
Dependencies
Maintainers
1
Versions
25
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

osc-js - npm Package Compare versions

Comparing version 2.3.2 to 2.4.0

lib/osc.d.ts

169

lib/osc.js

@@ -97,3 +97,3 @@ (function (global, factory) {

function _getPrototypeOf(o) {
_getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf : function _getPrototypeOf(o) {
_getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf.bind() : function _getPrototypeOf(o) {
return o.__proto__ || Object.getPrototypeOf(o);

@@ -105,7 +105,6 @@ };

function _setPrototypeOf(o, p) {
_setPrototypeOf = Object.setPrototypeOf || function _setPrototypeOf(o, p) {
_setPrototypeOf = Object.setPrototypeOf ? Object.setPrototypeOf.bind() : function _setPrototypeOf(o, p) {
o.__proto__ = p;
return o;
};
return _setPrototypeOf(o, p);

@@ -175,3 +174,3 @@ }

if (typeof Reflect !== "undefined" && Reflect.get) {
_get = Reflect.get;
_get = Reflect.get.bind();
} else {

@@ -858,14 +857,10 @@ _get = function _get(target, property, receiver) {

var _super = _createSuper(Message);
function Message() {
function Message(address) {
var _this3;
_classCallCheck(this, Message);
var address;
for (var _len = arguments.length, args = new Array(_len), _key = 0; _key < _len; _key++) {
args[_key] = arguments[_key];
var oscArgs;
for (var _len = arguments.length, args = new Array(_len > 1 ? _len - 1 : 0), _key = 1; _key < _len; _key++) {
args[_key - 1] = arguments[_key];
}
if (args.length > 0) {
address = args.shift();
}
var oscArgs;
if (args.length > 0) {
if (args[0] instanceof Array) {

@@ -1224,2 +1219,33 @@ oscArgs = args.shift();

var Plugin = function () {
function Plugin() {
_classCallCheck(this, Plugin);
if (this.constructor === Plugin) {
throw new Error('Plugin is an abstract class. Please create or use an implementation!');
}
}
_createClass(Plugin, [{
key: "status",
value: function status() {
throw new Error('Abstract method!');
}
}, {
key: "open",
value: function open() {
throw new Error('Abstract method!');
}
}, {
key: "close",
value: function close() {
throw new Error('Abstract method!');
}
}, {
key: "send",
value: function send(binary) {
throw new Error('Abstract method!');
}
}]);
return Plugin;
}();
var STATUS$4 = {

@@ -1252,20 +1278,24 @@ IS_NOT_INITIALIZED: -1,

}
var DatagramPlugin = function () {
var DatagramPlugin = function (_Plugin) {
_inherits(DatagramPlugin, _Plugin);
var _super = _createSuper(DatagramPlugin);
function DatagramPlugin() {
var _this = this;
var customOptions = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};
var _this;
var options = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};
_classCallCheck(this, DatagramPlugin);
_this = _super.call(this);
if (!dgram__default["default"]) {
throw new Error('DatagramPlugin can not be used in browser context');
}
this.options = mergeOptions$1({}, customOptions);
this.socket = dgram__default["default"].createSocket(this.options.type);
this.socketStatus = STATUS$4.IS_NOT_INITIALIZED;
this.socket.on('message', function (message, rinfo) {
_this.options = mergeOptions$1({}, options);
_this.socket = dgram__default["default"].createSocket(_this.options.type);
_this.socketStatus = STATUS$4.IS_NOT_INITIALIZED;
_this.socket.on('message', function (message, rinfo) {
_this.notify(message, rinfo);
});
this.socket.on('error', function (error) {
_this.socket.on('error', function (error) {
_this.notify('error', error);
});
this.notify = function () {};
_this.notify = function () {};
return _this;
}

@@ -1321,3 +1351,3 @@ _createClass(DatagramPlugin, [{

return DatagramPlugin;
}();
}(Plugin);

@@ -1354,15 +1384,18 @@ var STATUS$3 = {

}
var BridgePlugin = function () {
var BridgePlugin = function (_Plugin) {
_inherits(BridgePlugin, _Plugin);
var _super = _createSuper(BridgePlugin);
function BridgePlugin() {
var _this = this;
var customOptions = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};
var _this;
var options = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};
_classCallCheck(this, BridgePlugin);
_this = _super.call(this);
if (!dgram__default["default"] || !WebSocket.WebSocketServer) {
throw new Error('BridgePlugin can not be used in browser context');
}
this.options = mergeOptions({}, customOptions);
this.websocket = null;
this.socket = dgram__default["default"].createSocket('udp4');
this.socketStatus = STATUS$3.IS_NOT_INITIALIZED;
this.socket.on('message', function (message) {
_this.options = mergeOptions({}, options);
_this.websocket = null;
_this.socket = dgram__default["default"].createSocket('udp4');
_this.socketStatus = STATUS$3.IS_NOT_INITIALIZED;
_this.socket.on('message', function (message) {
_this.send(message, {

@@ -1373,6 +1406,7 @@ receiver: 'ws'

});
this.socket.on('error', function (error) {
_this.socket.on('error', function (error) {
_this.notify('error', error);
});
this.notify = function () {};
_this.notify = function () {};
return _this;
}

@@ -1459,3 +1493,3 @@ _createClass(BridgePlugin, [{

return BridgePlugin;
}();
}(Plugin);

@@ -1475,12 +1509,17 @@ var STATUS$2 = {

};
var WebsocketClientPlugin = function () {
function WebsocketClientPlugin(customOptions) {
var WebsocketClientPlugin = function (_Plugin) {
_inherits(WebsocketClientPlugin, _Plugin);
var _super = _createSuper(WebsocketClientPlugin);
function WebsocketClientPlugin(options) {
var _this;
_classCallCheck(this, WebsocketClientPlugin);
_this = _super.call(this);
if (!WebSocket__default["default"]) {
throw new Error('WebsocketClientPlugin can\'t find a WebSocket class');
}
this.options = _objectSpread2(_objectSpread2({}, defaultOptions$2), customOptions);
this.socket = null;
this.socketStatus = STATUS$2.IS_NOT_INITIALIZED;
this.notify = function () {};
_this.options = _objectSpread2(_objectSpread2({}, defaultOptions$2), options);
_this.socket = null;
_this.socketStatus = STATUS$2.IS_NOT_INITIALIZED;
_this.notify = function () {};
return _this;
}

@@ -1500,3 +1539,3 @@ _createClass(WebsocketClientPlugin, [{

value: function open() {
var _this = this;
var _this2 = this;
var customOptions = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};

@@ -1522,14 +1561,14 @@ var options = _objectSpread2(_objectSpread2({}, this.options), customOptions);

this.socket.onopen = function () {
_this.socketStatus = STATUS$2.IS_OPEN;
_this.notify('open');
_this2.socketStatus = STATUS$2.IS_OPEN;
_this2.notify('open');
};
this.socket.onclose = function () {
_this.socketStatus = STATUS$2.IS_CLOSED;
_this.notify('close');
_this2.socketStatus = STATUS$2.IS_CLOSED;
_this2.notify('close');
};
this.socket.onerror = function (error) {
_this.notify('error', error);
_this2.notify('error', error);
};
this.socket.onmessage = function (message) {
_this.notify(message.data, rinfo);
_this2.notify(message.data, rinfo);
};

@@ -1550,3 +1589,3 @@ }

return WebsocketClientPlugin;
}();
}(Plugin);

@@ -1564,12 +1603,17 @@ var STATUS$1 = {

};
var WebsocketServerPlugin = function () {
function WebsocketServerPlugin(customOptions) {
var WebsocketServerPlugin = function (_Plugin) {
_inherits(WebsocketServerPlugin, _Plugin);
var _super = _createSuper(WebsocketServerPlugin);
function WebsocketServerPlugin(options) {
var _this;
_classCallCheck(this, WebsocketServerPlugin);
_this = _super.call(this);
if (!WebSocket.WebSocketServer) {
throw new Error('WebsocketServerPlugin can not be used in browser context');
}
this.options = _objectSpread2(_objectSpread2({}, defaultOptions$1), customOptions);
this.socket = null;
this.socketStatus = STATUS$1.IS_NOT_INITIALIZED;
this.notify = function () {};
_this.options = _objectSpread2(_objectSpread2({}, defaultOptions$1), options);
_this.socket = null;
_this.socketStatus = STATUS$1.IS_NOT_INITIALIZED;
_this.notify = function () {};
return _this;
}

@@ -1589,3 +1633,3 @@ _createClass(WebsocketServerPlugin, [{

value: function open() {
var _this = this;
var _this2 = this;
var customOptions = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};

@@ -1617,11 +1661,11 @@ var options = _objectSpread2(_objectSpread2({}, this.options), customOptions);

this.socket.on('listening', function () {
_this.socketStatus = STATUS$1.IS_OPEN;
_this.notify('open');
_this2.socketStatus = STATUS$1.IS_OPEN;
_this2.notify('open');
});
this.socket.on('error', function (error) {
_this.notify('error', error);
_this2.notify('error', error);
});
this.socket.on('connection', function (client) {
client.on('message', function (message) {
_this.notify(new Uint8Array(message), rinfo);
_this2.notify(new Uint8Array(message), rinfo);
});

@@ -1633,7 +1677,7 @@ });

value: function close() {
var _this2 = this;
var _this3 = this;
this.socketStatus = STATUS$1.IS_CLOSING;
this.socket.close(function () {
_this2.socketStatus = STATUS$1.IS_CLOSED;
_this2.notify('close');
_this3.socketStatus = STATUS$1.IS_CLOSED;
_this3.notify('close');
});

@@ -1652,3 +1696,3 @@ }

return WebsocketServerPlugin;
}();
}(Plugin);

@@ -1748,2 +1792,3 @@ var defaultOptions = {

OSC.TypedMessage = TypedMessage;
OSC.Plugin = Plugin;
OSC.DatagramPlugin = DatagramPlugin;

@@ -1750,0 +1795,0 @@ OSC.WebsocketClientPlugin = WebsocketClientPlugin;

@@ -1,2 +0,2 @@

!function(t,e){"object"==typeof exports&&"undefined"!=typeof module?module.exports=e():"function"==typeof define&&define.amd?define(e):(t="undefined"!=typeof globalThis?globalThis:t||self).OSC=e()}(this,(function(){"use strict";function t(t,e){var n=Object.keys(t);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(t);e&&(r=r.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),n.push.apply(n,r)}return n}function e(e){for(var n=1;n<arguments.length;n++){var r=null!=arguments[n]?arguments[n]:{};n%2?t(Object(r),!0).forEach((function(t){i(e,t,r[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(r)):t(Object(r)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(r,t))}))}return e}function n(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}function r(t,e){for(var n=0;n<e.length;n++){var r=e[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(t,r.key,r)}}function o(t,e,n){return e&&r(t.prototype,e),n&&r(t,n),Object.defineProperty(t,"prototype",{writable:!1}),t}function i(t,e,n){return e in t?Object.defineProperty(t,e,{value:n,enumerable:!0,configurable:!0,writable:!0}):t[e]=n,t}function s(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function");t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,writable:!0,configurable:!0}}),Object.defineProperty(t,"prototype",{writable:!1}),e&&u(t,e)}function a(t){return(a=Object.setPrototypeOf?Object.getPrototypeOf:function(t){return t.__proto__||Object.getPrototypeOf(t)})(t)}function u(t,e){return(u=Object.setPrototypeOf||function(t,e){return t.__proto__=e,t})(t,e)}function c(t,e){if(e&&("object"==typeof e||"function"==typeof e))return e;if(void 0!==e)throw new TypeError("Derived constructors may only return object or undefined");return function(t){if(void 0===t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return t}(t)}function f(t){var e=function(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){}))),!0}catch(t){return!1}}();return function(){var n,r=a(t);if(e){var o=a(this).constructor;n=Reflect.construct(r,arguments,o)}else n=r.apply(this,arguments);return c(this,n)}}function l(t,e){for(;!Object.prototype.hasOwnProperty.call(t,e)&&null!==(t=a(t)););return t}function h(){return(h="undefined"!=typeof Reflect&&Reflect.get?Reflect.get:function(t,e,n){var r=l(t,e);if(r){var o=Object.getOwnPropertyDescriptor(r,e);return o.get?o.get.call(arguments.length<3?t:n):o.value}}).apply(this,arguments)}function p(t){return Number(t)===t&&t%1==0}function d(t){return Number(t)===t}function v(t){return"string"==typeof t}function w(t){return"boolean"==typeof t}function y(t){return t===1/0}function g(t){return"[object Array]"===Object.prototype.toString.call(t)}function k(t){return"[object Object]"===Object.prototype.toString.call(t)}function b(t){return"function"==typeof t}function m(t){return t instanceof Uint8Array}function S(t){return t instanceof Date}function O(t){return void 0===t}function E(t){return null===t}function C(t){return t+3&-4}function P(t){return Object.prototype.hasOwnProperty.call("undefined"!=typeof global?global:window,t)}function A(t){return t.buffer?new DataView(t.buffer):t instanceof ArrayBuffer?new DataView(t):new DataView(new Uint8Array(t))}function I(t){if(p(t))return"i";if(e=t,Number(e)===e&&e%1!=0)return"f";if(v(t))return"s";if(m(t))return"b";if(w(t))return t?"T":"F";if(E(t))return"N";if(y(t))return"I";var e;throw new Error("OSC typeTag() found unknown value type")}function D(t){var e="";if(g(t))return"/".concat(t.join("/"));if(v(t))return(e=t).length>1&&"/"===e[e.length-1]&&(e=e.slice(0,e.length-1)),e.length>1&&"/"!==e[0]&&(e="/".concat(e)),e;throw new Error("OSC prepareAddress() needs addresses of type array or string")}function j(t){if(!v(t))throw new Error("OSC prepareRegExPattern() needs strings");return t.replace(/\./g,"\\.").replace(/\(/g,"\\(").replace(/\)/g,"\\)").replace(/\{/g,"(").replace(/\}/g,")").replace(/,/g,"|").replace(/\[!/g,"[^").replace(/\?/g,".").replace(/\*/g,".*")}var B=function(){function t(){n(this,t),this.data=[],this.byteLength=0}return o(t,[{key:"add",value:function(t){if(w(t)||y(t)||E(t))return this;var e=t.pack();return this.byteLength+=e.byteLength,this.data.push(e),this}},{key:"merge",value:function(){var t=new Uint8Array(this.byteLength),e=0;return this.data.forEach((function(n){t.set(n,e),e+=n.byteLength})),t}}]),t}(),x=function(){function t(e){n(this,t),this.value=e,this.offset=0}return o(t,[{key:"pack",value:function(t,e){if(!t||!e)throw new Error("OSC Atomic cant't be packed without given method or byteLength");var n=new Uint8Array(e),r=new DataView(n.buffer);if(O(this.value))throw new Error("OSC Atomic cant't be encoded with empty value");return r[t](this.offset,this.value,!1),n}},{key:"unpack",value:function(t,e,n){var r=arguments.length>3&&void 0!==arguments[3]?arguments[3]:0;if(!(t&&e&&n))throw new Error("OSC Atomic cant't be unpacked without given dataView, method or byteLength");if(!(t instanceof DataView))throw new Error("OSC Atomic expects an instance of type DataView");return this.value=t[e](r,!1),this.offset=r+n,this.offset}}]),t}(),H=function(t){s(r,t);var e=f(r);function r(t){if(n(this,r),t&&!p(t))throw new Error("OSC AtomicInt32 constructor expects value of type number");return e.call(this,t)}return o(r,[{key:"pack",value:function(){return h(a(r.prototype),"pack",this).call(this,"setInt32",4)}},{key:"unpack",value:function(t){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:0;return h(a(r.prototype),"unpack",this).call(this,t,"getInt32",4,e)}}]),r}(x),M="utf-8";function T(t){if(P("Buffer"))return Buffer.from(t).toString(M);if(P("TextDecoder"))return new TextDecoder(M).decode(new Int8Array(t));for(var e="",n=0;n<t.length;n+=65537)e+=String.fromCharCode.apply(null,t.slice(n,n+65537));return e}var L,N=function(t){s(r,t);var e=f(r);function r(t){if(n(this,r),t&&!v(t))throw new Error("OSC AtomicString constructor expects value of type string");return e.call(this,t)}return o(r,[{key:"pack",value:function(){if(O(this.value))throw new Error("OSC AtomicString can not be encoded with empty value");for(var t="".concat(this.value,"\0"),e=C(t.length),n=new Uint8Array(e),r=0;r<t.length;r+=1)n[r]=t.charCodeAt(r);return n}},{key:"unpack",value:function(t){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:0;if(!(t instanceof DataView))throw new Error("OSC AtomicString expects an instance of type DataView");for(var n,r=e,o=[];r<t.byteLength;r+=1){if(0===(n=t.getUint8(r))){r+=1;break}o.push(n)}if(r===t.length)throw new Error("OSC AtomicString found a malformed OSC string");return this.offset=C(r),this.value=T(o),this.offset}}]),r}(x),V=2208988800,U=4294967296,W=function(){function t(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:0,r=arguments.length>1&&void 0!==arguments[1]?arguments[1]:0;if(n(this,t),!p(e)||!p(r))throw new Error("OSC Timetag constructor expects values of type integer number");this.seconds=e,this.fractions=r}return o(t,[{key:"timestamp",value:function(t){var e;if("number"==typeof t){e=t/1e3;var n=Math.floor(e);return this.seconds=n+V,this.fractions=Math.round(U*(e-n)),t}return 1e3*((e=this.seconds-V)+Math.round(this.fractions/U))}}]),t}(),_=function(t){s(r,t);var e=f(r);function r(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:Date.now();n(this,r);var o=new W;return t instanceof W?o=t:p(t)?o.timestamp(t):S(t)&&o.timestamp(t.getTime()),e.call(this,o)}return o(r,[{key:"pack",value:function(){if(O(this.value))throw new Error("OSC AtomicTimetag can not be encoded with empty value");var t=this.value,e=t.seconds,n=t.fractions,r=new Uint8Array(8),o=new DataView(r.buffer);return o.setInt32(0,e,!1),o.setInt32(4,n,!1),r}},{key:"unpack",value:function(t){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:0;if(!(t instanceof DataView))throw new Error("OSC AtomicTimetag expects an instance of type DataView");var n=t.getUint32(e,!1),r=t.getUint32(e+4,!1);return this.value=new W(n,r),this.offset=e+8,this.offset}}]),r}(x),R=function(t){s(r,t);var e=f(r);function r(t){if(n(this,r),t&&!m(t))throw new Error("OSC AtomicBlob constructor expects value of type Uint8Array");return e.call(this,t)}return o(r,[{key:"pack",value:function(){if(O(this.value))throw new Error("OSC AtomicBlob can not be encoded with empty value");var t=C(this.value.byteLength),e=new Uint8Array(t+4);return new DataView(e.buffer).setInt32(0,this.value.byteLength,!1),e.set(this.value,4),e}},{key:"unpack",value:function(t){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:0;if(!(t instanceof DataView))throw new Error("OSC AtomicBlob expects an instance of type DataView");var n=t.getInt32(e,!1);return this.value=new Uint8Array(t.buffer,e+4,n),this.offset=C(e+4+n),this.offset}}]),r}(x),F=function(t){s(r,t);var e=f(r);function r(t){if(n(this,r),t&&!d(t))throw new Error("OSC AtomicFloat32 constructor expects value of type float");return e.call(this,t)}return o(r,[{key:"pack",value:function(){return h(a(r.prototype),"pack",this).call(this,"setFloat32",4)}},{key:"unpack",value:function(t){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:0;return h(a(r.prototype),"unpack",this).call(this,t,"getFloat32",4,e)}}]),r}(x),z=function(t){s(r,t);var e=f(r);function r(t){if(n(this,r),t&&!d(t))throw new Error("OSC AtomicFloat64 constructor expects value of type float");return e.call(this,t)}return o(r,[{key:"pack",value:function(){return h(a(r.prototype),"pack",this).call(this,"setFloat64",8)}},{key:"unpack",value:function(t){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:0;return h(a(r.prototype),"unpack",this).call(this,t,"getFloat64",8,e)}}]),r}(x),G=BigInt("9223372036854775807"),Z=BigInt("-9223372036854775808"),q=function(t){s(r,t);var e=f(r);function r(t){if(n(this,r),t&&"bigint"!=typeof t)throw new Error("OSC AtomicInt64 constructor expects value of type BigInt");if(t&&(t<Z||t>G))throw new Error("OSC AtomicInt64 value is out of bounds");var o;return t&&(o=BigInt.asIntN(64,t)),e.call(this,o)}return o(r,[{key:"pack",value:function(){return h(a(r.prototype),"pack",this).call(this,"setBigInt64",8)}},{key:"unpack",value:function(t){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:0;return h(a(r.prototype),"unpack",this).call(this,t,"getBigInt64",8,e)}}]),r}(x),J=BigInt("18446744073709551615"),K=function(t){s(r,t);var e=f(r);function r(t){if(n(this,r),t&&"bigint"!=typeof t)throw new Error("OSC AtomicUInt64 constructor expects value of type BigInt");if(t&&(t<0||t>J))throw new Error("OSC AtomicUInt64 value is out of bounds");var o;return t&&(o=BigInt.asUintN(64,t)),e.call(this,o)}return o(r,[{key:"pack",value:function(){return h(a(r.prototype),"pack",this).call(this,"setBigUint64",8)}},{key:"unpack",value:function(t){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:0;return h(a(r.prototype),"unpack",this).call(this,t,"getBigUint64",8,e)}}]),r}(x),Q=!0,X=!1,Y=null,$=1/0,tt=function(){function t(e,r){var o=this;if(n(this,t),this.offset=0,this.address="",this.types="",this.args=[],!O(e)){if(!v(e)&&!g(e))throw new Error("OSC Message constructor first argument (address) must be a string or array");this.address=D(e)}if(!O(r)){if(!g(r))throw new Error("OSC Message constructor second argument (args) must be an array");r.forEach((function(t){return o.add(t.type,t.value)}))}}return o(t,[{key:"add",value:function(t,e){if(O(t))throw new Error("OSC Message needs a valid OSC Atomic Data Type");"N"===t?this.args.push(Y):"T"===t?this.args.push(Q):"F"===t?this.args.push(X):"I"===t?this.args.push($):this.args.push(e),this.types+=t}},{key:"pack",value:function(){var t=this;if(0===this.address.length||"/"!==this.address[0])throw new Error("OSC Message has an invalid address");var e=new B;if(e.add(new N(this.address)),e.add(new N(",".concat(this.types))),this.args.length>0){var n;if(this.args.length>this.types.length)throw new Error("OSC Message argument and type tag mismatch");this.args.forEach((function(r,o){var i=t.types[o];if("i"===i)n=new H(r);else if("h"===i)n=new q(r);else if("t"===i)n=new K(r);else if("f"===i)n=new F(r);else if("d"===i)n=new z(r);else if("s"===i)n=new N(r);else if("b"===i)n=new R(r);else if("T"===i)n=Q;else if("F"===i)n=X;else if("N"===i)n=Y;else{if("I"!==i)throw new Error("OSC Message found unknown argument type");n=$}e.add(n)}))}return e.merge()}},{key:"unpack",value:function(t){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:0;if(!(t instanceof DataView))throw new Error("OSC Message expects an instance of type DataView.");var n=new N;n.unpack(t,e);var r=new N;if(r.unpack(t,n.offset),0===n.value.length||"/"!==n.value[0])throw new Error("OSC Message found malformed or missing address string");if(0===r.value.length&&","!==r.value[0])throw new Error("OSC Message found malformed or missing type string");for(var o,i,s=r.offset,a=[],u=1;u<r.value.length;u+=1){if(o=null,"i"===(i=r.value[u]))o=new H;else if("h"===i)o=new q;else if("t"===i)o=new K;else if("f"===i)o=new F;else if("d"===i)o=new z;else if("s"===i)o=new N;else if("b"===i)o=new R;else if("T"===i)a.push(Q);else if("F"===i)a.push(X);else if("N"===i)a.push(Y);else{if("I"!==i)throw new Error("OSC Message found unsupported argument type");a.push($)}o&&(s=o.unpack(t,s),a.push(o.value))}return this.offset=s,this.address=n.value,this.types=r.value,this.args=a,this.offset}}]),t}(),et=function(t){s(r,t);var e=f(r);function r(){var t,o,i;n(this,r);for(var s=arguments.length,a=new Array(s),u=0;u<s;u++)a[u]=arguments[u];return a.length>0&&(o=a.shift()),a.length>0&&a[0]instanceof Array&&(i=a.shift()),t=e.call(this,o,i),a.length>0&&(t.types=a.map((function(t){return I(t)})).join(""),t.args=a),t}return o(r,[{key:"add",value:function(t){h(a(r.prototype),"add",this).call(this,I(t),t)}}]),r}(tt),nt="#bundle",rt=function(){function t(){var e=this;n(this,t),this.offset=0,this.timetag=new _,this.bundleElements=[];for(var r=arguments.length,o=new Array(r),i=0;i<r;i++)o[i]=arguments[i];o.length>0&&(o[0]instanceof Date||p(o[0])?this.timetag=new _(o[0]):g(o[0])?(o[0].forEach((function(t){e.add(t)})),o.length>1&&(o[1]instanceof Date||p(o[1]))&&(this.timetag=new _(o[1]))):o.forEach((function(t){e.add(t)})))}return o(t,[{key:"timestamp",value:function(t){if(!p(t))throw new Error("OSC Bundle needs an integer for setting the timestamp");this.timetag=new _(t)}},{key:"add",value:function(e){if(!(e instanceof et||e instanceof t))throw new Error("OSC Bundle contains only Messages and Bundles");this.bundleElements.push(e)}},{key:"pack",value:function(){var t=new B;return t.add(new N(nt)),this.timetag||(this.timetag=new _),t.add(this.timetag),this.bundleElements.forEach((function(e){t.add(new H(e.pack().byteLength)),t.add(e)})),t.merge()}},{key:"unpack",value:function(e){var n=arguments.length>1&&void 0!==arguments[1]?arguments[1]:0;if(!(e instanceof DataView))throw new Error("OSC Bundle expects an instance of type DataView");var r=new N;if(r.unpack(e,n),r.value!==nt)throw new Error("OSC Bundle does not contain a valid #bundle head");var o=new _,i=o.unpack(e,r.offset);for(this.bundleElements=[];i<e.byteLength;){var s=new N,a=new H;i=a.unpack(e,i);var u=void 0;s.unpack(e,i),i=(u=s.value===nt?new t:new et).unpack(e,i),this.bundleElements.push(u)}return this.offset=i,this.timetag=o,this.offset}}]),t}(),ot=function(){function t(e){if(n(this,t),e&&!(e instanceof et||e instanceof rt))throw new Error("OSC Packet value has to be Message or Bundle");this.value=e,this.offset=0}return o(t,[{key:"pack",value:function(){if(!this.value)throw new Error("OSC Packet can not be encoded with empty body");return this.value.pack()}},{key:"unpack",value:function(t){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:0;if(!(t instanceof DataView))throw new Error("OSC Packet expects an instance of type DataView");if(t.byteLength%4!=0)throw new Error("OSC Packet byteLength has to be a multiple of four");var n,r=new N;return r.unpack(t,e),(n=r.value===nt?new rt:new et).unpack(t,e),this.offset=n.offset,this.value=n,this.offset}}]),t}(),it={discardLateMessages:!1},st=function(){function t(r){n(this,t),this.options=e(e({},it),r),this.addressHandlers=[],this.eventHandlers={open:[],error:[],close:[]},this.uuid=0}return o(t,[{key:"dispatch",value:function(t,e){var n=this;if(!(t instanceof ot))throw new Error("OSC EventHander dispatch() accepts only arguments of type Packet");if(!t.value)throw new Error("OSC EventHander dispatch() can't read empty Packets");if(t.value instanceof rt){var r=t.value;return r.bundleElements.forEach((function(t){if(t instanceof rt){if(r.timetag.value.timestamp()<t.timetag.value.timestamp())throw new Error("OSC Bundle timestamp is older than the timestamp of enclosed Bundles");return n.dispatch(t)}if(t instanceof et){var o=t;return n.notify(o.address,o,r.timetag.value.timestamp(),e)}throw new Error("OSC EventHander dispatch() can't dispatch unknown Packet value")}))}if(t.value instanceof et){var o=t.value;return this.notify(o.address,o,0,e)}throw new Error("OSC EventHander dispatch() can't dispatch unknown Packet value")}},{key:"call",value:function(t,e,n){var r=!1;if(v(t)&&t in this.eventHandlers)return this.eventHandlers[t].forEach((function(t){t.callback(e,n),r=!0})),r;var o=Object.keys(this.addressHandlers),i=this.addressHandlers;return o.forEach((function(o){var s=!1,a=new RegExp(j(D(t)),"g");if(a.test(o)&&o.length===a.lastIndex&&(s=!0),!s){var u=new RegExp(j(D(o)),"g");u.test(t)&&t.length===u.lastIndex&&(s=!0)}s&&i[o].forEach((function(t){t.callback(e,n),r=!0}))})),r}},{key:"notify",value:function(){for(var t=arguments.length,e=new Array(t),n=0;n<t;n++)e[n]=arguments[n];if(0===e.length)throw new Error("OSC EventHandler can not be called without any argument");if(e[0]instanceof ot)return this.dispatch(e[0],e[1]);if(e[0]instanceof rt||e[0]instanceof et)return this.dispatch(new ot(e[0]),e[1]);if(!v(e[0])){var r=new ot;return r.unpack(A(e[0])),this.dispatch(r,e[1])}var o=e[0],i=null;e.length>1&&(i=e[1]);var s=null;if(e.length>2)if(p(e[2]))s=e[2];else{if(!(e[2]instanceof Date))throw new Error("OSC EventHandler timestamp has to be a number or Date");s=e[2].getTime()}var a=null;if(e.length>=3&&(a=e[3]),s){var u=Date.now();if(u>s&&!this.options.discardLateMessages)return this.call(o,i,a);var c=this;return setTimeout((function(){c.call(o,i,a)}),s-u),!0}return this.call(o,i,a)}},{key:"on",value:function(t,e){if(!v(t)&&!g(t))throw new Error("OSC EventHandler accepts only strings or arrays for address patterns");if(!b(e))throw new Error("OSC EventHandler callback has to be a function");this.uuid+=1;var n={id:this.uuid,callback:e};if(v(t)&&t in this.eventHandlers)return this.eventHandlers[t].push(n),this.uuid;var r=D(t);return r in this.addressHandlers||(this.addressHandlers[r]=[]),this.addressHandlers[r].push(n),this.uuid}},{key:"off",value:function(t,e){if(!v(t)&&!g(t))throw new Error("OSC EventHandler accepts only strings or arrays for address patterns");if(!p(e))throw new Error("OSC EventHandler subscription id has to be a number");var n,r;return v(t)&&t in this.eventHandlers?(n=t,r=this.eventHandlers):(n=D(t),r=this.addressHandlers),n in r&&r[n].some((function(t,o){return t.id===e&&(r[n].splice(o,1),!0)}))}}]),t}(),at=0,ut=1,ct=2,ft=3,lt=function(){function t(){throw n(this,t),new Error("DatagramPlugin can not be used in browser context")}return o(t,[{key:"registerNotify",value:function(t){this.notify=t}},{key:"status",value:function(){return this.socketStatus}},{key:"open",value:function(){var t=this,n=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},r=e(e({},this.options.open),n),o=r.port,i=r.exclusive;this.socketStatus=at,this.socket.bind({address:r.host,port:o,exclusive:i},(function(){t.socketStatus=ut,t.notify("open")}))}},{key:"close",value:function(){var t=this;this.socketStatus=ct,this.socket.close((function(){t.socketStatus=ft,t.notify("close")}))}},{key:"send",value:function(t){var n=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},r=e(e({},this.options.send),n),o=r.port,i=r.host;this.socket.send(Buffer.from(t),0,t.byteLength,o,i)}}]),t}();"undefined"!=typeof WebSocket?L=WebSocket:"undefined"!=typeof MozWebSocket?L=MozWebSocket:"undefined"!=typeof global?L=global.WebSocket||global.MozWebSocket:"undefined"!=typeof window?L=window.WebSocket||window.MozWebSocket:"undefined"!=typeof self&&(L=self.WebSocket||self.MozWebSocket);var ht=void 0,pt=L,dt=0,vt=1,wt=2,yt=3,gt={udpServer:{host:"localhost",port:41234,exclusive:!1},udpClient:{host:"localhost",port:41235},wsServer:{host:"localhost",port:8080},receiver:"ws"};function kt(t,n){return e(e(e(e({},gt),t),n),{},{udpServer:e(e(e({},gt.udpServer),t.udpServer),n.udpServer),udpClient:e(e(e({},gt.udpClient),t.udpClient),n.udpClient),wsServer:e(e(e({},gt.wsServer),t.wsServer),n.wsServer)})}var bt=function(){function t(){throw n(this,t),new Error("BridgePlugin can not be used in browser context")}return o(t,[{key:"registerNotify",value:function(t){this.notify=t}},{key:"status",value:function(){return this.socketStatus}},{key:"open",value:function(){var t=this,e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},n=kt(this.options,e);this.socketStatus=dt,this.socket.bind({address:n.udpServer.host,port:n.udpServer.port,exclusive:n.udpServer.exclusive},(function(){var e={};n.wsServer.server?e.server=n.wsServer.server:e=n.wsServer,t.websocket=new ht(e),t.websocket.binaryType="arraybuffer",t.websocket.on("listening",(function(){t.socketStatus=vt,t.notify("open")})),t.websocket.on("error",(function(e){t.notify("error",e)})),t.websocket.on("connection",(function(e){e.on("message",(function(e,n){t.send(e,{receiver:"udp"}),t.notify(new Uint8Array(e),n)}))}))}))}},{key:"close",value:function(){var t=this;this.socketStatus=wt,this.socket.close((function(){t.websocket.close((function(){t.socketStatus=yt,t.notify("close")}))}))}},{key:"send",value:function(t){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},n=kt(this.options,e),r=n.receiver;if("udp"===r){var o=t instanceof Buffer?t:Buffer.from(t);this.socket.send(o,0,o.byteLength,n.udpClient.port,n.udpClient.host)}else{if("ws"!==r)throw new Error("BridgePlugin can not send message to unknown receiver");this.websocket.clients.forEach((function(e){e.send(t,{binary:!0})}))}}}]),t}(),mt=-1,St=0,Ot=1,Et=2,Ct=3,Pt={host:"localhost",port:8080,secure:!1,protocol:[]},At=function(){function t(r){if(n(this,t),!pt)throw new Error("WebsocketClientPlugin can't find a WebSocket class");this.options=e(e({},Pt),r),this.socket=null,this.socketStatus=mt,this.notify=function(){}}return o(t,[{key:"registerNotify",value:function(t){this.notify=t}},{key:"status",value:function(){return this.socketStatus}},{key:"open",value:function(){var t=this,n=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},r=e(e({},this.options),n),o=r.port,i=r.host,s=r.secure,a=r.protocol;this.socket&&this.close();var u=s?"wss":"ws",c={address:i,family:u,port:o,size:0};this.socket=new pt("".concat(u,"://").concat(i,":").concat(o),a),this.socket.binaryType="arraybuffer",this.socketStatus=St,this.socket.onopen=function(){t.socketStatus=Ot,t.notify("open")},this.socket.onclose=function(){t.socketStatus=Ct,t.notify("close")},this.socket.onerror=function(e){t.notify("error",e)},this.socket.onmessage=function(e){t.notify(e.data,c)}}},{key:"close",value:function(){this.socketStatus=Et,this.socket.close()}},{key:"send",value:function(t){this.socket.send(t)}}]),t}(),It=0,Dt=1,jt=2,Bt=3,xt=function(){function t(e){throw n(this,t),new Error("WebsocketServerPlugin can not be used in browser context")}return o(t,[{key:"registerNotify",value:function(t){this.notify=t}},{key:"status",value:function(){return this.socketStatus}},{key:"open",value:function(){var t=this,n=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},r=e(e({},this.options),n),o=r.port,i=r.host,s={address:i,family:"wsserver",port:o,size:0};this.socket&&this.close(),r.server?this.socket=new ht({server:r.server}):this.socket=new ht({host:i,port:o}),this.socket.binaryType="arraybuffer",this.socketStatus=It,this.socket.on("listening",(function(){t.socketStatus=Dt,t.notify("open")})),this.socket.on("error",(function(e){t.notify("error",e)})),this.socket.on("connection",(function(e){e.on("message",(function(e){t.notify(new Uint8Array(e),s)}))}))}},{key:"close",value:function(){var t=this;this.socketStatus=jt,this.socket.close((function(){t.socketStatus=Bt,t.notify("close")}))}},{key:"send",value:function(t){this.socket.clients.forEach((function(e){e.send(t,{binary:!0})}))}}]),t}(),Ht={discardLateMessages:!1,plugin:new At},Mt=function(){function t(r){if(n(this,t),r&&!k(r))throw new Error("OSC options argument has to be an object.");this.options=e(e({},Ht),r),this.eventHandler=new st({discardLateMessages:this.options.discardLateMessages});var o=this.eventHandler;this.options.plugin&&this.options.plugin.registerNotify&&this.options.plugin.registerNotify((function(){return o.notify.apply(o,arguments)}))}return o(t,[{key:"on",value:function(t,e){if(!v(t)||!b(e))throw new Error("OSC on() needs event- or address string and callback function");return this.eventHandler.on(t,e)}},{key:"off",value:function(t,e){if(!v(t)||!p(e))throw new Error("OSC off() needs string and number (subscriptionId) to unsubscribe");return this.eventHandler.off(t,e)}},{key:"open",value:function(t){if(t&&!k(t))throw new Error("OSC open() options argument needs to be an object");if(!this.options.plugin||!b(this.options.plugin.open))throw new Error("OSC Plugin API #open is not implemented!");return this.options.plugin.open(t)}},{key:"status",value:function(){if(!this.options.plugin||!b(this.options.plugin.status))throw new Error("OSC Plugin API #status is not implemented!");return this.options.plugin.status()}},{key:"close",value:function(){if(!this.options.plugin||!b(this.options.plugin.close))throw new Error("OSC Plugin API #close is not implemented!");return this.options.plugin.close()}},{key:"send",value:function(t,e){if(!this.options.plugin||!b(this.options.plugin.send))throw new Error("OSC Plugin API #send is not implemented!");if(!(t instanceof tt||t instanceof et||t instanceof rt||t instanceof ot))throw new Error("OSC send() needs Messages, Bundles or Packets");if(e&&!k(e))throw new Error("OSC send() options argument has to be an object");return this.options.plugin.send(t.pack(),e)}}]),t}();return Mt.STATUS={IS_NOT_INITIALIZED:-1,IS_CONNECTING:0,IS_OPEN:1,IS_CLOSING:2,IS_CLOSED:3},Mt.Packet=ot,Mt.Bundle=rt,Mt.Message=et,Mt.TypedMessage=tt,Mt.DatagramPlugin=lt,Mt.WebsocketClientPlugin=At,Mt.WebsocketServerPlugin=xt,Mt.BridgePlugin=bt,Mt}));
!function(t,e){"object"==typeof exports&&"undefined"!=typeof module?module.exports=e():"function"==typeof define&&define.amd?define(e):(t="undefined"!=typeof globalThis?globalThis:t||self).OSC=e()}(this,(function(){"use strict";function t(t,e){var n=Object.keys(t);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(t);e&&(r=r.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),n.push.apply(n,r)}return n}function e(e){for(var n=1;n<arguments.length;n++){var r=null!=arguments[n]?arguments[n]:{};n%2?t(Object(r),!0).forEach((function(t){i(e,t,r[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(r)):t(Object(r)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(r,t))}))}return e}function n(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}function r(t,e){for(var n=0;n<e.length;n++){var r=e[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(t,r.key,r)}}function o(t,e,n){return e&&r(t.prototype,e),n&&r(t,n),Object.defineProperty(t,"prototype",{writable:!1}),t}function i(t,e,n){return e in t?Object.defineProperty(t,e,{value:n,enumerable:!0,configurable:!0,writable:!0}):t[e]=n,t}function s(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function");t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,writable:!0,configurable:!0}}),Object.defineProperty(t,"prototype",{writable:!1}),e&&u(t,e)}function a(t){return a=Object.setPrototypeOf?Object.getPrototypeOf.bind():function(t){return t.__proto__||Object.getPrototypeOf(t)},a(t)}function u(t,e){return u=Object.setPrototypeOf?Object.setPrototypeOf.bind():function(t,e){return t.__proto__=e,t},u(t,e)}function c(t,e){if(e&&("object"==typeof e||"function"==typeof e))return e;if(void 0!==e)throw new TypeError("Derived constructors may only return object or undefined");return function(t){if(void 0===t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return t}(t)}function f(t){var e=function(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){}))),!0}catch(t){return!1}}();return function(){var n,r=a(t);if(e){var o=a(this).constructor;n=Reflect.construct(r,arguments,o)}else n=r.apply(this,arguments);return c(this,n)}}function l(t,e){for(;!Object.prototype.hasOwnProperty.call(t,e)&&null!==(t=a(t)););return t}function h(){return h="undefined"!=typeof Reflect&&Reflect.get?Reflect.get.bind():function(t,e,n){var r=l(t,e);if(r){var o=Object.getOwnPropertyDescriptor(r,e);return o.get?o.get.call(arguments.length<3?t:n):o.value}},h.apply(this,arguments)}function p(t){return Number(t)===t&&t%1==0}function d(t){return Number(t)===t}function v(t){return"string"==typeof t}function w(t){return"boolean"==typeof t}function y(t){return t===1/0}function g(t){return"[object Array]"===Object.prototype.toString.call(t)}function k(t){return"[object Object]"===Object.prototype.toString.call(t)}function b(t){return"function"==typeof t}function m(t){return t instanceof Uint8Array}function S(t){return t instanceof Date}function E(t){return void 0===t}function O(t){return null===t}function C(t){return t+3&-4}function P(t){return Object.prototype.hasOwnProperty.call("undefined"!=typeof global?global:window,t)}function A(t){return t.buffer?new DataView(t.buffer):t instanceof ArrayBuffer?new DataView(t):new DataView(new Uint8Array(t))}function I(t){if(p(t))return"i";if(e=t,Number(e)===e&&e%1!=0)return"f";if(v(t))return"s";if(m(t))return"b";if(w(t))return t?"T":"F";if(O(t))return"N";if(y(t))return"I";var e;throw new Error("OSC typeTag() found unknown value type")}function D(t){var e="";if(g(t))return"/".concat(t.join("/"));if(v(t))return(e=t).length>1&&"/"===e[e.length-1]&&(e=e.slice(0,e.length-1)),e.length>1&&"/"!==e[0]&&(e="/".concat(e)),e;throw new Error("OSC prepareAddress() needs addresses of type array or string")}function j(t){if(!v(t))throw new Error("OSC prepareRegExPattern() needs strings");return t.replace(/\./g,"\\.").replace(/\(/g,"\\(").replace(/\)/g,"\\)").replace(/\{/g,"(").replace(/\}/g,")").replace(/,/g,"|").replace(/\[!/g,"[^").replace(/\?/g,".").replace(/\*/g,".*")}var B=function(){function t(){n(this,t),this.data=[],this.byteLength=0}return o(t,[{key:"add",value:function(t){if(w(t)||y(t)||O(t))return this;var e=t.pack();return this.byteLength+=e.byteLength,this.data.push(e),this}},{key:"merge",value:function(){var t=new Uint8Array(this.byteLength),e=0;return this.data.forEach((function(n){t.set(n,e),e+=n.byteLength})),t}}]),t}(),x=function(){function t(e){n(this,t),this.value=e,this.offset=0}return o(t,[{key:"pack",value:function(t,e){if(!t||!e)throw new Error("OSC Atomic cant't be packed without given method or byteLength");var n=new Uint8Array(e),r=new DataView(n.buffer);if(E(this.value))throw new Error("OSC Atomic cant't be encoded with empty value");return r[t](this.offset,this.value,!1),n}},{key:"unpack",value:function(t,e,n){var r=arguments.length>3&&void 0!==arguments[3]?arguments[3]:0;if(!(t&&e&&n))throw new Error("OSC Atomic cant't be unpacked without given dataView, method or byteLength");if(!(t instanceof DataView))throw new Error("OSC Atomic expects an instance of type DataView");return this.value=t[e](r,!1),this.offset=r+n,this.offset}}]),t}(),H=function(t){s(r,t);var e=f(r);function r(t){if(n(this,r),t&&!p(t))throw new Error("OSC AtomicInt32 constructor expects value of type number");return e.call(this,t)}return o(r,[{key:"pack",value:function(){return h(a(r.prototype),"pack",this).call(this,"setInt32",4)}},{key:"unpack",value:function(t){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:0;return h(a(r.prototype),"unpack",this).call(this,t,"getInt32",4,e)}}]),r}(x),M="utf-8";function T(t){if(P("Buffer"))return Buffer.from(t).toString(M);if(P("TextDecoder"))return new TextDecoder(M).decode(new Int8Array(t));for(var e="",n=0;n<t.length;n+=65537)e+=String.fromCharCode.apply(null,t.slice(n,n+65537));return e}var L=function(t){s(r,t);var e=f(r);function r(t){if(n(this,r),t&&!v(t))throw new Error("OSC AtomicString constructor expects value of type string");return e.call(this,t)}return o(r,[{key:"pack",value:function(){if(E(this.value))throw new Error("OSC AtomicString can not be encoded with empty value");for(var t="".concat(this.value,"\0"),e=C(t.length),n=new Uint8Array(e),r=0;r<t.length;r+=1)n[r]=t.charCodeAt(r);return n}},{key:"unpack",value:function(t){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:0;if(!(t instanceof DataView))throw new Error("OSC AtomicString expects an instance of type DataView");for(var n,r=e,o=[];r<t.byteLength;r+=1){if(0===(n=t.getUint8(r))){r+=1;break}o.push(n)}if(r===t.length)throw new Error("OSC AtomicString found a malformed OSC string");return this.offset=C(r),this.value=T(o),this.offset}}]),r}(x),N=2208988800,V=4294967296,U=function(){function t(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:0,r=arguments.length>1&&void 0!==arguments[1]?arguments[1]:0;if(n(this,t),!p(e)||!p(r))throw new Error("OSC Timetag constructor expects values of type integer number");this.seconds=e,this.fractions=r}return o(t,[{key:"timestamp",value:function(t){var e;if("number"==typeof t){e=t/1e3;var n=Math.floor(e);return this.seconds=n+N,this.fractions=Math.round(V*(e-n)),t}return 1e3*((e=this.seconds-N)+Math.round(this.fractions/V))}}]),t}(),W=function(t){s(r,t);var e=f(r);function r(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:Date.now();n(this,r);var o=new U;return t instanceof U?o=t:p(t)?o.timestamp(t):S(t)&&o.timestamp(t.getTime()),e.call(this,o)}return o(r,[{key:"pack",value:function(){if(E(this.value))throw new Error("OSC AtomicTimetag can not be encoded with empty value");var t=this.value,e=t.seconds,n=t.fractions,r=new Uint8Array(8),o=new DataView(r.buffer);return o.setInt32(0,e,!1),o.setInt32(4,n,!1),r}},{key:"unpack",value:function(t){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:0;if(!(t instanceof DataView))throw new Error("OSC AtomicTimetag expects an instance of type DataView");var n=t.getUint32(e,!1),r=t.getUint32(e+4,!1);return this.value=new U(n,r),this.offset=e+8,this.offset}}]),r}(x),_=function(t){s(r,t);var e=f(r);function r(t){if(n(this,r),t&&!m(t))throw new Error("OSC AtomicBlob constructor expects value of type Uint8Array");return e.call(this,t)}return o(r,[{key:"pack",value:function(){if(E(this.value))throw new Error("OSC AtomicBlob can not be encoded with empty value");var t=C(this.value.byteLength),e=new Uint8Array(t+4);return new DataView(e.buffer).setInt32(0,this.value.byteLength,!1),e.set(this.value,4),e}},{key:"unpack",value:function(t){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:0;if(!(t instanceof DataView))throw new Error("OSC AtomicBlob expects an instance of type DataView");var n=t.getInt32(e,!1);return this.value=new Uint8Array(t.buffer,e+4,n),this.offset=C(e+4+n),this.offset}}]),r}(x),R=function(t){s(r,t);var e=f(r);function r(t){if(n(this,r),t&&!d(t))throw new Error("OSC AtomicFloat32 constructor expects value of type float");return e.call(this,t)}return o(r,[{key:"pack",value:function(){return h(a(r.prototype),"pack",this).call(this,"setFloat32",4)}},{key:"unpack",value:function(t){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:0;return h(a(r.prototype),"unpack",this).call(this,t,"getFloat32",4,e)}}]),r}(x),F=function(t){s(r,t);var e=f(r);function r(t){if(n(this,r),t&&!d(t))throw new Error("OSC AtomicFloat64 constructor expects value of type float");return e.call(this,t)}return o(r,[{key:"pack",value:function(){return h(a(r.prototype),"pack",this).call(this,"setFloat64",8)}},{key:"unpack",value:function(t){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:0;return h(a(r.prototype),"unpack",this).call(this,t,"getFloat64",8,e)}}]),r}(x),z=BigInt("9223372036854775807"),G=BigInt("-9223372036854775808"),Z=function(t){s(r,t);var e=f(r);function r(t){if(n(this,r),t&&"bigint"!=typeof t)throw new Error("OSC AtomicInt64 constructor expects value of type BigInt");if(t&&(t<G||t>z))throw new Error("OSC AtomicInt64 value is out of bounds");var o;return t&&(o=BigInt.asIntN(64,t)),e.call(this,o)}return o(r,[{key:"pack",value:function(){return h(a(r.prototype),"pack",this).call(this,"setBigInt64",8)}},{key:"unpack",value:function(t){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:0;return h(a(r.prototype),"unpack",this).call(this,t,"getBigInt64",8,e)}}]),r}(x),q=BigInt("18446744073709551615"),J=function(t){s(r,t);var e=f(r);function r(t){if(n(this,r),t&&"bigint"!=typeof t)throw new Error("OSC AtomicUInt64 constructor expects value of type BigInt");if(t&&(t<0||t>q))throw new Error("OSC AtomicUInt64 value is out of bounds");var o;return t&&(o=BigInt.asUintN(64,t)),e.call(this,o)}return o(r,[{key:"pack",value:function(){return h(a(r.prototype),"pack",this).call(this,"setBigUint64",8)}},{key:"unpack",value:function(t){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:0;return h(a(r.prototype),"unpack",this).call(this,t,"getBigUint64",8,e)}}]),r}(x),K=!0,Q=!1,X=null,Y=1/0,$=function(){function t(e,r){var o=this;if(n(this,t),this.offset=0,this.address="",this.types="",this.args=[],!E(e)){if(!v(e)&&!g(e))throw new Error("OSC Message constructor first argument (address) must be a string or array");this.address=D(e)}if(!E(r)){if(!g(r))throw new Error("OSC Message constructor second argument (args) must be an array");r.forEach((function(t){return o.add(t.type,t.value)}))}}return o(t,[{key:"add",value:function(t,e){if(E(t))throw new Error("OSC Message needs a valid OSC Atomic Data Type");"N"===t?this.args.push(X):"T"===t?this.args.push(K):"F"===t?this.args.push(Q):"I"===t?this.args.push(Y):this.args.push(e),this.types+=t}},{key:"pack",value:function(){var t=this;if(0===this.address.length||"/"!==this.address[0])throw new Error("OSC Message has an invalid address");var e=new B;if(e.add(new L(this.address)),e.add(new L(",".concat(this.types))),this.args.length>0){var n;if(this.args.length>this.types.length)throw new Error("OSC Message argument and type tag mismatch");this.args.forEach((function(r,o){var i=t.types[o];if("i"===i)n=new H(r);else if("h"===i)n=new Z(r);else if("t"===i)n=new J(r);else if("f"===i)n=new R(r);else if("d"===i)n=new F(r);else if("s"===i)n=new L(r);else if("b"===i)n=new _(r);else if("T"===i)n=K;else if("F"===i)n=Q;else if("N"===i)n=X;else{if("I"!==i)throw new Error("OSC Message found unknown argument type");n=Y}e.add(n)}))}return e.merge()}},{key:"unpack",value:function(t){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:0;if(!(t instanceof DataView))throw new Error("OSC Message expects an instance of type DataView.");var n=new L;n.unpack(t,e);var r=new L;if(r.unpack(t,n.offset),0===n.value.length||"/"!==n.value[0])throw new Error("OSC Message found malformed or missing address string");if(0===r.value.length&&","!==r.value[0])throw new Error("OSC Message found malformed or missing type string");for(var o,i,s=r.offset,a=[],u=1;u<r.value.length;u+=1){if(o=null,"i"===(i=r.value[u]))o=new H;else if("h"===i)o=new Z;else if("t"===i)o=new J;else if("f"===i)o=new R;else if("d"===i)o=new F;else if("s"===i)o=new L;else if("b"===i)o=new _;else if("T"===i)a.push(K);else if("F"===i)a.push(Q);else if("N"===i)a.push(X);else{if("I"!==i)throw new Error("OSC Message found unsupported argument type");a.push(Y)}o&&(s=o.unpack(t,s),a.push(o.value))}return this.offset=s,this.address=n.value,this.types=r.value,this.args=a,this.offset}}]),t}(),tt=function(t){s(r,t);var e=f(r);function r(t){var o,i;n(this,r);for(var s=arguments.length,a=new Array(s>1?s-1:0),u=1;u<s;u++)a[u-1]=arguments[u];return a.length>0&&a[0]instanceof Array&&(i=a.shift()),o=e.call(this,t,i),a.length>0&&(o.types=a.map((function(t){return I(t)})).join(""),o.args=a),o}return o(r,[{key:"add",value:function(t){h(a(r.prototype),"add",this).call(this,I(t),t)}}]),r}($),et="#bundle",nt=function(){function t(){var e=this;n(this,t),this.offset=0,this.timetag=new W,this.bundleElements=[];for(var r=arguments.length,o=new Array(r),i=0;i<r;i++)o[i]=arguments[i];o.length>0&&(o[0]instanceof Date||p(o[0])?this.timetag=new W(o[0]):g(o[0])?(o[0].forEach((function(t){e.add(t)})),o.length>1&&(o[1]instanceof Date||p(o[1]))&&(this.timetag=new W(o[1]))):o.forEach((function(t){e.add(t)})))}return o(t,[{key:"timestamp",value:function(t){if(!p(t))throw new Error("OSC Bundle needs an integer for setting the timestamp");this.timetag=new W(t)}},{key:"add",value:function(e){if(!(e instanceof tt||e instanceof t))throw new Error("OSC Bundle contains only Messages and Bundles");this.bundleElements.push(e)}},{key:"pack",value:function(){var t=new B;return t.add(new L(et)),this.timetag||(this.timetag=new W),t.add(this.timetag),this.bundleElements.forEach((function(e){t.add(new H(e.pack().byteLength)),t.add(e)})),t.merge()}},{key:"unpack",value:function(e){var n=arguments.length>1&&void 0!==arguments[1]?arguments[1]:0;if(!(e instanceof DataView))throw new Error("OSC Bundle expects an instance of type DataView");var r=new L;if(r.unpack(e,n),r.value!==et)throw new Error("OSC Bundle does not contain a valid #bundle head");var o=new W,i=o.unpack(e,r.offset);for(this.bundleElements=[];i<e.byteLength;){var s=new L,a=new H;i=a.unpack(e,i);var u=void 0;s.unpack(e,i),i=(u=s.value===et?new t:new tt).unpack(e,i),this.bundleElements.push(u)}return this.offset=i,this.timetag=o,this.offset}}]),t}(),rt=function(){function t(e){if(n(this,t),e&&!(e instanceof tt||e instanceof nt))throw new Error("OSC Packet value has to be Message or Bundle");this.value=e,this.offset=0}return o(t,[{key:"pack",value:function(){if(!this.value)throw new Error("OSC Packet can not be encoded with empty body");return this.value.pack()}},{key:"unpack",value:function(t){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:0;if(!(t instanceof DataView))throw new Error("OSC Packet expects an instance of type DataView");if(t.byteLength%4!=0)throw new Error("OSC Packet byteLength has to be a multiple of four");var n,r=new L;return r.unpack(t,e),(n=r.value===et?new nt:new tt).unpack(t,e),this.offset=n.offset,this.value=n,this.offset}}]),t}(),ot={discardLateMessages:!1},it=function(){function t(r){n(this,t),this.options=e(e({},ot),r),this.addressHandlers=[],this.eventHandlers={open:[],error:[],close:[]},this.uuid=0}return o(t,[{key:"dispatch",value:function(t,e){var n=this;if(!(t instanceof rt))throw new Error("OSC EventHander dispatch() accepts only arguments of type Packet");if(!t.value)throw new Error("OSC EventHander dispatch() can't read empty Packets");if(t.value instanceof nt){var r=t.value;return r.bundleElements.forEach((function(t){if(t instanceof nt){if(r.timetag.value.timestamp()<t.timetag.value.timestamp())throw new Error("OSC Bundle timestamp is older than the timestamp of enclosed Bundles");return n.dispatch(t)}if(t instanceof tt){var o=t;return n.notify(o.address,o,r.timetag.value.timestamp(),e)}throw new Error("OSC EventHander dispatch() can't dispatch unknown Packet value")}))}if(t.value instanceof tt){var o=t.value;return this.notify(o.address,o,0,e)}throw new Error("OSC EventHander dispatch() can't dispatch unknown Packet value")}},{key:"call",value:function(t,e,n){var r=!1;if(v(t)&&t in this.eventHandlers)return this.eventHandlers[t].forEach((function(t){t.callback(e,n),r=!0})),r;var o=Object.keys(this.addressHandlers),i=this.addressHandlers;return o.forEach((function(o){var s=!1,a=new RegExp(j(D(t)),"g");if(a.test(o)&&o.length===a.lastIndex&&(s=!0),!s){var u=new RegExp(j(D(o)),"g");u.test(t)&&t.length===u.lastIndex&&(s=!0)}s&&i[o].forEach((function(t){t.callback(e,n),r=!0}))})),r}},{key:"notify",value:function(){for(var t=arguments.length,e=new Array(t),n=0;n<t;n++)e[n]=arguments[n];if(0===e.length)throw new Error("OSC EventHandler can not be called without any argument");if(e[0]instanceof rt)return this.dispatch(e[0],e[1]);if(e[0]instanceof nt||e[0]instanceof tt)return this.dispatch(new rt(e[0]),e[1]);if(!v(e[0])){var r=new rt;return r.unpack(A(e[0])),this.dispatch(r,e[1])}var o=e[0],i=null;e.length>1&&(i=e[1]);var s=null;if(e.length>2)if(p(e[2]))s=e[2];else{if(!(e[2]instanceof Date))throw new Error("OSC EventHandler timestamp has to be a number or Date");s=e[2].getTime()}var a=null;if(e.length>=3&&(a=e[3]),s){var u=Date.now();if(u>s&&!this.options.discardLateMessages)return this.call(o,i,a);var c=this;return setTimeout((function(){c.call(o,i,a)}),s-u),!0}return this.call(o,i,a)}},{key:"on",value:function(t,e){if(!v(t)&&!g(t))throw new Error("OSC EventHandler accepts only strings or arrays for address patterns");if(!b(e))throw new Error("OSC EventHandler callback has to be a function");this.uuid+=1;var n={id:this.uuid,callback:e};if(v(t)&&t in this.eventHandlers)return this.eventHandlers[t].push(n),this.uuid;var r=D(t);return r in this.addressHandlers||(this.addressHandlers[r]=[]),this.addressHandlers[r].push(n),this.uuid}},{key:"off",value:function(t,e){if(!v(t)&&!g(t))throw new Error("OSC EventHandler accepts only strings or arrays for address patterns");if(!p(e))throw new Error("OSC EventHandler subscription id has to be a number");var n,r;return v(t)&&t in this.eventHandlers?(n=t,r=this.eventHandlers):(n=D(t),r=this.addressHandlers),n in r&&r[n].some((function(t,o){return t.id===e&&(r[n].splice(o,1),!0)}))}}]),t}(),st=function(){function t(){if(n(this,t),this.constructor===t)throw new Error("Plugin is an abstract class. Please create or use an implementation!")}return o(t,[{key:"status",value:function(){throw new Error("Abstract method!")}},{key:"open",value:function(){throw new Error("Abstract method!")}},{key:"close",value:function(){throw new Error("Abstract method!")}},{key:"send",value:function(t){throw new Error("Abstract method!")}}]),t}(),at=0,ut=1,ct=2,ft=3,lt=function(t){s(i,t);var r=f(i);function i(){throw n(this,i),r.call(this),new Error("DatagramPlugin can not be used in browser context")}return o(i,[{key:"registerNotify",value:function(t){this.notify=t}},{key:"status",value:function(){return this.socketStatus}},{key:"open",value:function(){var t=this,n=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},r=e(e({},this.options.open),n),o=r.port,i=r.exclusive;this.socketStatus=at,this.socket.bind({address:r.host,port:o,exclusive:i},(function(){t.socketStatus=ut,t.notify("open")}))}},{key:"close",value:function(){var t=this;this.socketStatus=ct,this.socket.close((function(){t.socketStatus=ft,t.notify("close")}))}},{key:"send",value:function(t){var n=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},r=e(e({},this.options.send),n),o=r.port,i=r.host;this.socket.send(Buffer.from(t),0,t.byteLength,o,i)}}]),i}(st);var ht="undefined"!=typeof WebSocket?WebSocket:"undefined"!=typeof MozWebSocket?MozWebSocket:"undefined"!=typeof global?global.WebSocket||global.MozWebSocket:"undefined"!=typeof window?window.WebSocket||window.MozWebSocket:"undefined"!=typeof self?self.WebSocket||self.MozWebSocket:void 0,pt=void 0,dt=0,vt=1,wt=2,yt=3,gt={udpServer:{host:"localhost",port:41234,exclusive:!1},udpClient:{host:"localhost",port:41235},wsServer:{host:"localhost",port:8080},receiver:"ws"};function kt(t,n){return e(e(e(e({},gt),t),n),{},{udpServer:e(e(e({},gt.udpServer),t.udpServer),n.udpServer),udpClient:e(e(e({},gt.udpClient),t.udpClient),n.udpClient),wsServer:e(e(e({},gt.wsServer),t.wsServer),n.wsServer)})}var bt=function(t){s(r,t);var e=f(r);function r(){throw n(this,r),e.call(this),new Error("BridgePlugin can not be used in browser context")}return o(r,[{key:"registerNotify",value:function(t){this.notify=t}},{key:"status",value:function(){return this.socketStatus}},{key:"open",value:function(){var t=this,e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},n=kt(this.options,e);this.socketStatus=dt,this.socket.bind({address:n.udpServer.host,port:n.udpServer.port,exclusive:n.udpServer.exclusive},(function(){var e={};n.wsServer.server?e.server=n.wsServer.server:e=n.wsServer,t.websocket=new pt(e),t.websocket.binaryType="arraybuffer",t.websocket.on("listening",(function(){t.socketStatus=vt,t.notify("open")})),t.websocket.on("error",(function(e){t.notify("error",e)})),t.websocket.on("connection",(function(e){e.on("message",(function(e,n){t.send(e,{receiver:"udp"}),t.notify(new Uint8Array(e),n)}))}))}))}},{key:"close",value:function(){var t=this;this.socketStatus=wt,this.socket.close((function(){t.websocket.close((function(){t.socketStatus=yt,t.notify("close")}))}))}},{key:"send",value:function(t){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},n=kt(this.options,e),r=n.receiver;if("udp"===r){var o=t instanceof Buffer?t:Buffer.from(t);this.socket.send(o,0,o.byteLength,n.udpClient.port,n.udpClient.host)}else{if("ws"!==r)throw new Error("BridgePlugin can not send message to unknown receiver");this.websocket.clients.forEach((function(e){e.send(t,{binary:!0})}))}}}]),r}(st),mt=-1,St=0,Et=1,Ot=2,Ct=3,Pt={host:"localhost",port:8080,secure:!1,protocol:[]},At=function(t){s(i,t);var r=f(i);function i(t){var o;if(n(this,i),o=r.call(this),!ht)throw new Error("WebsocketClientPlugin can't find a WebSocket class");return o.options=e(e({},Pt),t),o.socket=null,o.socketStatus=mt,o.notify=function(){},o}return o(i,[{key:"registerNotify",value:function(t){this.notify=t}},{key:"status",value:function(){return this.socketStatus}},{key:"open",value:function(){var t=this,n=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},r=e(e({},this.options),n),o=r.port,i=r.host,s=r.secure,a=r.protocol;this.socket&&this.close();var u=s?"wss":"ws",c={address:i,family:u,port:o,size:0};this.socket=new ht("".concat(u,"://").concat(i,":").concat(o),a),this.socket.binaryType="arraybuffer",this.socketStatus=St,this.socket.onopen=function(){t.socketStatus=Et,t.notify("open")},this.socket.onclose=function(){t.socketStatus=Ct,t.notify("close")},this.socket.onerror=function(e){t.notify("error",e)},this.socket.onmessage=function(e){t.notify(e.data,c)}}},{key:"close",value:function(){this.socketStatus=Ot,this.socket.close()}},{key:"send",value:function(t){this.socket.send(t)}}]),i}(st),It=0,Dt=1,jt=2,Bt=3,xt=function(t){s(i,t);var r=f(i);function i(t){throw n(this,i),r.call(this),new Error("WebsocketServerPlugin can not be used in browser context")}return o(i,[{key:"registerNotify",value:function(t){this.notify=t}},{key:"status",value:function(){return this.socketStatus}},{key:"open",value:function(){var t=this,n=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},r=e(e({},this.options),n),o=r.port,i=r.host,s={address:i,family:"wsserver",port:o,size:0};this.socket&&this.close(),r.server?this.socket=new pt({server:r.server}):this.socket=new pt({host:i,port:o}),this.socket.binaryType="arraybuffer",this.socketStatus=It,this.socket.on("listening",(function(){t.socketStatus=Dt,t.notify("open")})),this.socket.on("error",(function(e){t.notify("error",e)})),this.socket.on("connection",(function(e){e.on("message",(function(e){t.notify(new Uint8Array(e),s)}))}))}},{key:"close",value:function(){var t=this;this.socketStatus=jt,this.socket.close((function(){t.socketStatus=Bt,t.notify("close")}))}},{key:"send",value:function(t){this.socket.clients.forEach((function(e){e.send(t,{binary:!0})}))}}]),i}(st),Ht={discardLateMessages:!1,plugin:new At},Mt=function(){function t(r){if(n(this,t),r&&!k(r))throw new Error("OSC options argument has to be an object.");this.options=e(e({},Ht),r),this.eventHandler=new it({discardLateMessages:this.options.discardLateMessages});var o=this.eventHandler;this.options.plugin&&this.options.plugin.registerNotify&&this.options.plugin.registerNotify((function(){return o.notify.apply(o,arguments)}))}return o(t,[{key:"on",value:function(t,e){if(!v(t)||!b(e))throw new Error("OSC on() needs event- or address string and callback function");return this.eventHandler.on(t,e)}},{key:"off",value:function(t,e){if(!v(t)||!p(e))throw new Error("OSC off() needs string and number (subscriptionId) to unsubscribe");return this.eventHandler.off(t,e)}},{key:"open",value:function(t){if(t&&!k(t))throw new Error("OSC open() options argument needs to be an object");if(!this.options.plugin||!b(this.options.plugin.open))throw new Error("OSC Plugin API #open is not implemented!");return this.options.plugin.open(t)}},{key:"status",value:function(){if(!this.options.plugin||!b(this.options.plugin.status))throw new Error("OSC Plugin API #status is not implemented!");return this.options.plugin.status()}},{key:"close",value:function(){if(!this.options.plugin||!b(this.options.plugin.close))throw new Error("OSC Plugin API #close is not implemented!");return this.options.plugin.close()}},{key:"send",value:function(t,e){if(!this.options.plugin||!b(this.options.plugin.send))throw new Error("OSC Plugin API #send is not implemented!");if(!(t instanceof $||t instanceof tt||t instanceof nt||t instanceof rt))throw new Error("OSC send() needs Messages, Bundles or Packets");if(e&&!k(e))throw new Error("OSC send() options argument has to be an object");return this.options.plugin.send(t.pack(),e)}}]),t}();return Mt.STATUS={IS_NOT_INITIALIZED:-1,IS_CONNECTING:0,IS_OPEN:1,IS_CLOSING:2,IS_CLOSED:3},Mt.Packet=rt,Mt.Bundle=nt,Mt.Message=tt,Mt.TypedMessage=$,Mt.Plugin=st,Mt.DatagramPlugin=lt,Mt.WebsocketClientPlugin=At,Mt.WebsocketServerPlugin=xt,Mt.BridgePlugin=bt,Mt}));
//# sourceMappingURL=osc.min.js.map
{
"name": "osc-js",
"version": "2.3.2",
"version": "2.4.0",
"description": "OSC library for Node.js and the browser, with customizable Plugin API for WebSocket, UDP or bridge networking",
"main": "lib/osc.js",
"browser": "lib/osc.min.js",
"types": "lib/osc.d.ts",
"scripts": {

@@ -39,8 +40,10 @@ "build": "rollup -c",

"devDependencies": {
"@babel/core": "7.17.9",
"@babel/eslint-parser": "7.17.0",
"@babel/preset-env": "7.16.11",
"@babel/register": "7.17.7",
"@babel/core": "7.19.3",
"@babel/eslint-parser": "7.19.1",
"@babel/preset-env": "7.19.3",
"@babel/register": "7.18.9",
"@rollup/plugin-alias": "^3.1.9",
"@rollup/plugin-babel": "^5.3.1",
"@types/node": "^18.8.3",
"@types/ws": "^8.5.3",
"chai": "4.3.6",

@@ -51,13 +54,15 @@ "chai-spies-next": "0.9.3",

"esdoc-standard-plugin": "1.0.0",
"eslint": "8.13.0",
"eslint": "8.24.0",
"eslint-config-airbnb-base": "15.0.0",
"eslint-plugin-import": "2.26.0",
"mocha": "9.2.2",
"rollup": "2.70.1",
"mocha": "10.0.0",
"rollup": "2.79.1",
"rollup-plugin-cleanup": "3.2.1",
"rollup-plugin-terser": "7.0.2"
"rollup-plugin-dts": "^4.2.2",
"rollup-plugin-terser": "7.0.2",
"typescript": "^4.8.4"
},
"dependencies": {
"ws": "^8.5.0"
"ws": "^8.9.0"
}
}

@@ -27,2 +27,3 @@ osc-js

- Can be used with Webpack and Browserify
- TypeScript definitions
- No dependencies (except of `ws` in Node.js or similar environments)

@@ -197,2 +198,3 @@ - Receive sender information from incoming messages

* [@eliot-akira](https://github.com/eliot-akira)
* [@JacobMuchow](https://github.com/JacobMuchow)
* [@PeterKey](https://github.com/PeterKey)

@@ -199,0 +201,0 @@ * [@yaxu](https://github.com/yaxu)

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc