Skip to content

Commit

Permalink
docs: remove mentioning $URL
Browse files Browse the repository at this point in the history
  • Loading branch information
pi0 committed Feb 5, 2024
1 parent 89be2d1 commit 65e6be8
Showing 1 changed file with 0 additions and 17 deletions.
17 changes: 0 additions & 17 deletions README.md
Expand Up @@ -109,23 +109,6 @@ parseFilename("http://example.com/path/to/filename.ext");
parseFilename("/path/to/.hidden-file", { strict: true });
```

### `$URL`

Implementing URL interface with improvements:

- Supporting schemeless and hostless URLs
- Supporting relative URLs
- Preserving trailing-slash status
- Decoded and mutable class properties (`protocol`, `host`, `auth`, `pathname`, `query`, `hash`)
- Consistent URL parser independent of environment
- Consistent encoding independent of environment
- Punycode support for host encoding

```ts
new $URL("http://localhost:3000/hello?world=true");
// { protocol: 'http:', host: 'localhost:3000', auth: '', pathname: '/hello', query: { world: 'true' }, hash: '' }
```

### `withTrailingSlash`

Ensures url ends with a trailing slash.
Expand Down

0 comments on commit 65e6be8

Please sign in to comment.