Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs: 📝 update demo with custom functions #29

Merged
merged 2 commits into from
May 11, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions demo/demo.ts
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,12 @@ import { evaluate, parse } from 'cel-js'
// Macro expressions
const macroExpr = 'size([1, 2])'
console.log(`${macroExpr} => ${evaluate(macroExpr)}`) // => 2

// Custom function expressions
const functionExpr = 'max(2, 1, 3, 7)'
console.log(
`${functionExpr} => ${evaluate(functionExpr, {}, { max: Math.max })}`
) // => 7
}

// Parse an expression, useful for validation purposes before persisting
Expand Down
4 changes: 2 additions & 2 deletions demo/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@
"description": "A simple usage of the CEL library",
"type": "module",
"dependencies": {
"cel-js": "0.1.6"
"cel-js": "0.2.0"
},
"devDependencies": {
"tsx": "4.7.0"
"tsx": "4.10.0"
}
}
Loading
Loading