UNPKG
jsdx-connman
Version:
latest (0.2.1)
0.2.1
0.0.6
0.0.5
0.0.4
0.0.3
0.0.2
0.0.1
JSDX Connection Manager API
github.com/cfsghost/jsdx-connman
jsdx-connman
/
tests
/
GetAllTechnologyInfo.js
12 lines
(8 loc)
•
204 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
var
ConnMan
=
require
(
'../'
);
var
connman =
new
ConnMan
(); connman.
init
(
function
(
) { connman.
getAllTechnologyInfo
(
function
(
err, technologies
) {
console
.
log
(technologies); process.
exit
(); }); });