(first, second, def)
| 506 | |
| 507 | function settings_from_nm(settings) { |
| 508 | function get(first, second, def) { |
| 509 | if (settings[first] && settings[first][second]) |
| 510 | return settings[first][second].v; |
| 511 | else |
| 512 | return def; |
| 513 | } |
| 514 | |
| 515 | function get_ip(first, ip_to_text) { |
| 516 | const dns_data = self.supports_dns_data |
no outgoing calls
no test coverage detected