(key)
| 173 | * @returns {*} |
| 174 | */ |
| 175 | const configGet = (key) => { |
| 176 | instance === null && configure(); |
| 177 | if (key && typeof instance[key] !== "undefined") { |
| 178 | return instance[key]; |
| 179 | } |
| 180 | return instance; |
| 181 | }; |
| 182 | |
| 183 | /** |
| 184 | * Is this a sqlite configuration? |
no test coverage detected