@bcts/dcbor-pattern 1.0.0-alpha.15 → 1.0.0-alpha.17
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +1 -1
- package/dist/index.cjs +247 -247
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +15 -9
- package/dist/index.d.cts.map +1 -1
- package/dist/index.d.mts +15 -9
- package/dist/index.d.mts.map +1 -1
- package/dist/index.iife.js +247 -247
- package/dist/index.iife.js.map +1 -1
- package/dist/index.mjs +247 -247
- package/dist/index.mjs.map +1 -1
- package/package.json +9 -9
- package/src/format.ts +7 -7
- package/src/interval.ts +23 -23
- package/src/parse/token.ts +40 -40
- package/src/pattern/structure/array-pattern/assigner.ts +21 -21
- package/src/pattern/structure/array-pattern/backtrack.ts +18 -18
- package/src/quantifier.ts +13 -13
package/README.md
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
|
|
5
5
|
## Introduction
|
|
6
6
|
|
|
7
|
-
`@bcts/dcbor-pattern` provides a powerful pattern matching language for querying and extracting data from [dCBOR](
|
|
7
|
+
`@bcts/dcbor-pattern` provides a powerful pattern matching language for querying and extracting data from [dCBOR](https://github.com/leonardocustodio/bcts/tree/main/packages/dcbor) (Deterministic CBOR) structures. It supports value matching, structural patterns, and meta-patterns with named captures.
|
|
8
8
|
|
|
9
9
|
The pattern language is designed to be expressive yet concise, allowing you to match complex nested structures with simple pattern expressions.
|
|
10
10
|
|