(key, def)
| 93 | |
| 94 | function initConfig() { |
| 95 | function get(key, def) { |
| 96 | const keys = normalizeKeys(key); |
| 97 | keys.unshift('sync'); |
| 98 | return getOption(keys) ?? def; |
| 99 | } |
| 100 | function set(key, value) { |
| 101 | const keys = normalizeKeys(key); |
| 102 | keys.unshift('sync'); |
nothing calls this directly
no test coverage detected