This repository has been archived by the owner on Jun 6, 2019. It is now read-only.
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add URL toString() method to return synonym for href. (according to s…
…pec) Current build: var u = new URL('b', 'http://a'); console.log( u.toString() ); // "[object Object]"" After patch: var u = new URL('b', 'http://a'); console.log( u.toString() ); // "http://a/b" // currently I cannot find URL related test on tests folder, should I write some tests for this patch?
- Loading branch information