You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// on Windows, paths have a drive letter which is parsed by
// url.parse() as the hostname. If host is defined, assume
// it's the drive letter and add ":"
if (process.platform == "win32" && config.host.match(/^[a-z]$/i)) {
if we use a opts table instead of URL, the config.host may undefined, so have a check is required.
a change to
if (process.platform == "win32" && config.host && config.host.match(/^[a-z]$/i)) {
avoid this issue.
The text was updated successfully, but these errors were encountered:
at line 23 of sqlite.js:
if we use a opts table instead of URL, the config.host may undefined, so have a check is required.
a change to
avoid this issue.
The text was updated successfully, but these errors were encountered: