UNPKG

@cloudpss/ubrpc

Version:

Rpc server/client build on websocket and ubjson.

9 lines 210 B
import { encode } from '@cloudpss/ubjson'; /** 发送消息 */ export function send(socket, type, info) { socket.send(encode({ ...info, type, })); } //# sourceMappingURL=messaging.js.map