-
Notifications
You must be signed in to change notification settings - Fork 15
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
Range expressions #84
Conversation
✅ Deploy Preview for raredocs ready!
To edit notification comments on pull requests, go to your Netlify site settings. |
Codecov Report
@@ Coverage Diff @@
## master #84 +/- ##
==========================================
+ Coverage 87.08% 87.40% +0.31%
==========================================
Files 96 97 +1
Lines 4391 4627 +236
==========================================
+ Hits 3824 4044 +220
- Misses 433 446 +13
- Partials 134 137 +3
Help us with your feedback. Take ten seconds to tell us how you rate us. Have a feature suggestion? Share it here. |
pkg/expressions/stdlib/funcs.go
Outdated
@@ -61,6 +62,14 @@ var StandardFunctions = map[string]KeyBuilderFunction{ | |||
"tab": kfJoin('\t'), | |||
"$": kfJoin(ArraySeparator), | |||
|
|||
// Ranges | |||
"$map": kfArrayMap, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Add $select func
No description provided.