Skip to content

Commit 660254a

Browse files
author
Corey Wilson
committed
(docs) updated readme to include new methods
1 parent c571f12 commit 660254a

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

README.md

+6-1
Original file line numberDiff line numberDiff line change
@@ -93,11 +93,16 @@ NetworkInfo.getIPAddress(ip => {
9393
console.log(ip);
9494
});
9595
96-
// Get IPv4 IP (Android Only)
96+
// Get IPv4 IP
9797
NetworkInfo.getIPV4Address(ipv4 => {
9898
console.log(ipv4);
9999
});
100100
101+
// Get Broadcast
102+
NetworkInfo.getBroadcast(address => {
103+
console.log(address);
104+
});
105+
101106
// Get SSID
102107
NetworkInfo.getSSID(ssid => {
103108
console.log(ssid);

0 commit comments

Comments
 (0)