Only list top 5 wifi hotspots
This commit is contained in:
parent
71cfaff6c8
commit
757e3dd86d
|
@ -36,12 +36,14 @@ class Wifi {
|
|||
const lines = stdout.split('\n')
|
||||
let output = []
|
||||
let line
|
||||
let i = 0
|
||||
for (let l of lines) {
|
||||
line = l.replace('ESSID:', '').trim()
|
||||
if (line !== '""') {
|
||||
if (line !== '""' && i < 5) {
|
||||
line = line.replace(quoteRe, '')
|
||||
output.push(line)
|
||||
}
|
||||
i++
|
||||
}
|
||||
output = output.filter(ap => {
|
||||
if (ap !== '') return ap
|
||||
|
|
Loading…
Reference in New Issue