react-native-udp/UdpSockets.js
Andy Prock 3ce4b63536 initial android support
moved ios specific code into a subfolder
created an android folder
updated the Install instructions on the readme
bumped the version to 0.2.0
2015-09-25 14:58:32 -07:00

16 lines
206 B
JavaScript

/**
* @providesModule UdpSockets
* @flow
*/
var UdpSocket = require('./UdpSocket');
exports.createSocket = function(type) {
return new UdpSocket({
type: type
})
}
exports.Socket = UdpSocket;