mirror of
https://github.com/status-im/react-native-udp.git
synced 2025-01-27 01:08:50 +00:00
export UdpSocket as Socket, enabling the use of dgram.Socket
This commit is contained in:
parent
d3e3016318
commit
485883eaa4
@ -6,10 +6,10 @@
|
||||
|
||||
var UdpSocket = require('./UdpSocket.ios')
|
||||
|
||||
module.exports = {
|
||||
createSocket: function(type) {
|
||||
return new UdpSocket({
|
||||
type: type
|
||||
})
|
||||
}
|
||||
}
|
||||
exports.createSocket = function(type) {
|
||||
return new UdpSocket({
|
||||
type: type
|
||||
})
|
||||
}
|
||||
|
||||
exports.Socket = UdpSocket;
|
||||
|
Loading…
x
Reference in New Issue
Block a user