()
| 383 | } |
| 384 | } |
| 385 | get shortName() { |
| 386 | const index = this.findIndex(GAP.ADType.SHORTENED_LOCAL_NAME); |
| 387 | if (-1 != index) |
| 388 | return this.#getStringType(index); |
| 389 | } |
| 390 | get manufacturerSpecific() { |
| 391 | const index = this.findIndex(GAP.ADType.MANUFACTURER_SPECIFIC_DATA); |
| 392 | if (-1 != index) { |
nothing calls this directly
no test coverage detected