| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
There was a problem hiding this comment.
LGTM, just some minor comments
Sorry, something went wrong.
Adds support for string expressions `ltrim`, `rtrim`, `stringRepeat` `stringReplaceOne` `stringReplaceAll`, `stringIndexOf`. Ported from: googleapis/java-firestore#2326
Adds support for string expressions `ltrim`, `rtrim`, `stringRepeat` `stringReplaceOne` `stringReplaceAll`, `stringIndexOf`. Ported from: googleapis/java-firestore#2326
Adds support for string expressions `ltrim`, `rtrim`, `stringRepeat` `stringReplaceOne` `stringReplaceAll`, `stringIndexOf`. Ported from: googleapis/java-firestore#2326
| Back | FazBrowse Home | New Git URL |
Adds string expressions: ltrim, rtrim, stringIndexOf, stringReplaceOne, stringReplaceAll, stringRepeat.
The ltrimValue and rtrimValue functions exist to avoid duplicate function declarations between the functions static Expression rtrim(Expression: valueToTrim) (trim the valueToTrim from this) and Expression ltrim(Expression: exprToTrim) (trim whitespace from exprToTrim). This is already done for the existing trim APIs here and in Android.
Ported from: firebase/firebase-js-sdk#9479