docs(regexp): complete documentation (#4319)

This commit is contained in:
David Luis 2024-02-13 03:32:41 +07:00 committed by GitHub
parent 775058040a
commit 7f5693a5f3
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 4 additions and 2 deletions

View File

@ -1,4 +1,5 @@
// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license. // Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.
// This module is browser compatible.
// // For future forward-compatibility with regexp `v` flag, reservedCharMap is // // For future forward-compatibility with regexp `v` flag, reservedCharMap is
// // autogenerated from the ClassSetReservedDoublePunctuator, // // autogenerated from the ClassSetReservedDoublePunctuator,

View File

@ -2,8 +2,9 @@
// This module is browser compatible. // This module is browser compatible.
/** /**
* Functions for tasks related to regular expression (regexps), such as * Functions for tasks related to
* escaping text for interpolation into a regexp * {@link https://en.wikipedia.org/wiki/Regular_expression | regular expression} (regexp),
* such as escaping text for interpolation into a regexp.
* *
* @module * @module
*/ */