1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2025-01-11 08:33:43 -05:00

fix(docs): correct pattern.match() to pattern.exec() (#12450)

This commit is contained in:
Libing Chen 2021-10-15 02:25:48 -07:00 committed by GitHub
parent 74364889f0
commit 004d07dccd
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -225,7 +225,7 @@ declare interface URLPatternResult {
* ```ts
* // Specify the pattern as structured data.
* const pattern = new URLPattern({ pathname: "/users/:user" });
* const match = pattern.match("/users/joe");
* const match = pattern.exec("/users/joe");
* console.log(match.pathname.groups.user); // joe
* ```
*
@ -277,15 +277,15 @@ declare class URLPattern {
* const pattern = new URLPattern("https://example.com/books/:id");
*
* // Match a url string.
* let match = pattern.match("https://example.com/books/123");
* let match = pattern.exec("https://example.com/books/123");
* console.log(match.pathname.groups.id); // 123
*
* // Match a relative url with a base.
* match = pattern.match("/books/123", "https://example.com");
* match = pattern.exec("/books/123", "https://example.com");
* console.log(match.pathname.groups.id); // 123
*
* // Match an object of url components.
* match = pattern.match({ pathname: "/books/123" });
* match = pattern.exec({ pathname: "/books/123" });
* console.log(match.pathname.groups.id); // 123
* ```
*/