05ed037fe8
- DNS: pilot.landvex.com -> 16.170.83.169 - TLS: Let's Encrypt certificate (expires 2026-09-30) - Nginx: reverse proxy with SSL termination - API: https://pilot.landvex.com/api/v1/missions - UI: https://pilot.landvex.com/ - Upload: POST /api/v1/missions/import (multipart/form-data) Verified: ✅ https://pilot.landvex.com/health ✅ https://pilot.landvex.com/version ✅ https://pilot.landvex.com/api/v1/missions (list) ✅ https://pilot.landvex.com/api/v1/missions/:id (get) ✅ POST /api/v1/missions/import (video upload) ✅ UI loads with title 'LandveX Intelligence Lab' Next: Pilot 001 — Break the system!
58 lines
1.7 KiB
Markdown
58 lines
1.7 KiB
Markdown
# balanced-match
|
|
|
|
Match balanced string pairs, like `{` and `}` or `<b>` and
|
|
`</b>`. Supports regular expressions as well!
|
|
|
|
## Example
|
|
|
|
Get the first matching pair of braces:
|
|
|
|
```js
|
|
import { balanced } from 'balanced-match'
|
|
|
|
console.log(balanced('{', '}', 'pre{in{nested}}post'))
|
|
console.log(balanced('{', '}', 'pre{first}between{second}post'))
|
|
console.log(
|
|
balanced(/\s+\{\s+/, /\s+\}\s+/, 'pre { in{nest} } post'),
|
|
)
|
|
```
|
|
|
|
The matches are:
|
|
|
|
```bash
|
|
$ node example.js
|
|
{ start: 3, end: 14, pre: 'pre', body: 'in{nested}', post: 'post' }
|
|
{ start: 3,
|
|
end: 9,
|
|
pre: 'pre',
|
|
body: 'first',
|
|
post: 'between{second}post' }
|
|
{ start: 3, end: 17, pre: 'pre', body: 'in{nest}', post: 'post' }
|
|
```
|
|
|
|
## API
|
|
|
|
### const m = balanced(a, b, str)
|
|
|
|
For the first non-nested matching pair of `a` and `b` in `str`, return an
|
|
object with those keys:
|
|
|
|
- **start** the index of the first match of `a`
|
|
- **end** the index of the matching `b`
|
|
- **pre** the preamble, `a` and `b` not included
|
|
- **body** the match, `a` and `b` not included
|
|
- **post** the postscript, `a` and `b` not included
|
|
|
|
If there's no match, `undefined` will be returned.
|
|
|
|
If the `str` contains more `a` than `b` / there are unmatched pairs, the first match that was closed will be used. For example, `{{a}` will match `['{', 'a', '']` and `{a}}` will match `['', 'a', '}']`.
|
|
|
|
### const r = balanced.range(a, b, str)
|
|
|
|
For the first non-nested matching pair of `a` and `b` in `str`, return an
|
|
array with indexes: `[ <a index>, <b index> ]`.
|
|
|
|
If there's no match, `undefined` will be returned.
|
|
|
|
If the `str` contains more `a` than `b` / there are unmatched pairs, the first match that was closed will be used. For example, `{{a}` will match `[ 1, 3 ]` and `{a}}` will match `[0, 2]`.
|