Merge pull request #1 from aprock/master

export UdpSocket as Socket, enabling the use of dgram.Socket
This commit is contained in:
Mark Vayngrib 2015-06-15 17:56:44 -04:00
commit 92d40936b0
1 changed files with 7 additions and 7 deletions

View File

@ -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;