-
Notifications
You must be signed in to change notification settings - Fork 29.6k
New issue
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
url: move originFor, domainToAscii and domainToUnicode #10512
Conversation
|
Yeah, returning the non-serialized version is precisely the point. Still, I consider it to still be speculative as a public API. |
c4a7ab9
to
5acce63
Compare
Rebased and updated |
Failures in freebsd are unrelated |
Cleaned up some stale processes on a FreeBSD host in CI. Let's try FreeBSD CI again: https://ci.nodejs.org/job/node-test-commit-freebsd/6141/ |
Move non-standard methods to `url` module instead of exposing as static methods on the `URL` object.
5acce63
to
734b914
Compare
Move non-standard methods to `url` module instead of exposing as static methods on the `URL` object. PR-URL: #10512 Reviewed-By: Italo A. Casas <[email protected]> Reviewed-By: Michaël Zasso <[email protected]>
Landed in abc1633 |
Move non-standard methods to `url` module instead of exposing as static methods on the `URL` object. PR-URL: #10512 Reviewed-By: Italo A. Casas <[email protected]> Reviewed-By: Michaël Zasso <[email protected]>
Move non-standard methods to `url` module instead of exposing as static methods on the `URL` object. PR-URL: #10512 Reviewed-By: Italo A. Casas <[email protected]> Reviewed-By: Michaël Zasso <[email protected]>
Checklist
make -j4 test
(UNIX), orvcbuild test
(Windows) passesAffected core subsystem(s)
url
Description of change
Move non-standard methods from the new experimental
URL
implementationto
url
module instead of exposing as static methods on theURL
object.