We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
file-box/src/misc.ts
Lines 90 to 98 in 3788e59
If we use new url.URL() to replace url.parse, the unit tests will fail, and the reason still needs to be found.
new url.URL()
url.parse
Url { protocol: 'https:', slashes: true, auth: null, host: 'httpbin.org', port: null, hostname: 'httpbin.org', hash: null, search: null, query: null, pathname: '/headers', path: '/headers', href: 'https://httpbin.org/headers' }
new url.URL
URL { href: 'https://httpbin.org/headers', origin: 'https://httpbin.org', protocol: 'https:', username: '', password: '', host: 'httpbin.org', hostname: 'httpbin.org', port: '', pathname: '/headers', search: '', searchParams: URLSearchParams {}, hash: '' } https://httpbin.org/headers
The text was updated successfully, but these errors were encountered:
refactor: ♻️ use url.URL
689dd11
Fixes: Get rid of deprecated Node.js API: url.parse huan#20
No branches or pull requests
file-box/src/misc.ts
Lines 90 to 98 in 3788e59
If we use
new url.URL()
to replaceurl.parse
, the unit tests will fail, and the reason still needs to be found.url.parse
new url.URL
The text was updated successfully, but these errors were encountered: