mirror of
https://github.com/status-im/react-native-udp.git
synced 2025-01-12 10:04:21 +00:00
15 lines
259 B
JavaScript
15 lines
259 B
JavaScript
|
|
/**
|
|
* @providesModule UdpSockets
|
|
* @flow
|
|
*/
|
|
|
|
var UdpSocket = require('./UdpSocket');
|
|
|
|
exports.createSocket = function(options) {
|
|
if (typeof options === 'string') options = { type: options }
|
|
return new UdpSocket(options)
|
|
}
|
|
|
|
exports.Socket = UdpSocket;
|