-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathindex.ts
More file actions
23 lines (20 loc) · 641 Bytes
/
index.ts
File metadata and controls
23 lines (20 loc) · 641 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
/*
* edge-parser
*
* (c) Harminder Virk <virk@adonisjs.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
export { Stack } from './src/stack/index.js'
export { Parser } from './src/parser/main.js'
export { EdgeBuffer } from './src/edge_buffer/index.js'
import * as ExpressionsList from './src/expressions/index.js'
/**
* Names of supported expressions
*/
export const expressions = Object.keys(ExpressionsList).reduce((result, name) => {
// @ts-ignore
result[name] = name
return result
}, {}) as { [P in keyof typeof ExpressionsList]: P }