react-native-udp/UdpSockets.js

15 lines
259 B
JavaScript
Raw Permalink Normal View History

2015-05-09 17:55:49 -04:00
/**
2015-05-10 10:26:29 -04:00
* @providesModule UdpSockets
2015-05-09 17:55:49 -04:00
* @flow
*/
var UdpSocket = require('./UdpSocket');
2015-05-09 17:55:49 -04:00
exports.createSocket = function(options) {
if (typeof options === 'string') options = { type: options }
return new UdpSocket(options)
}
exports.Socket = UdpSocket;