openvidu/openvidu-browser/src/OpenViduInternal/KurentoUtils/kurento-jsonrpc/packers/XmlRPC.js

11 lines
200 B
JavaScript
Raw Normal View History

2021-03-22 12:14:38 +01:00
function pack(message) {
throw new TypeError('Not yet implemented');
}
2021-03-22 12:14:38 +01:00
function unpack(message) {
throw new TypeError('Not yet implemented');
}
2021-03-22 12:14:38 +01:00
exports.pack = pack;
exports.unpack = unpack;