You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Oct 7, 2024. It is now read-only.
constcontext={name: null}expect(axel.compile('LEN(name)')(context)).toEqual(0)// error here with result - 4
I found that it is because of converting of nil values to "NULL" string instead of "" an empty string in case of excel functions which accepts string as an argument.
I've found that the excel-string function used in LEN func implementation and guessing that we should add an additional (if (nil? text) "" text) to avoid nil in excel-string function call.
What should I do?
It would be nice if you adjust the LEN function to accept nil values as an "" empty string instead of "NULL" string.
The text was updated successfully, but these errors were encountered:
I have a problem:
I found that it is because of converting of
nil
values to"NULL"
string instead of""
an empty string in case of excel functions which accepts string as an argument.I've found that the
excel-string
function used inLEN
func implementation and guessing that we should add an additional(if (nil? text) "" text)
to avoidnil
inexcel-string
function call.What should I do?
It would be nice if you adjust the
LEN
function to acceptnil
values as an""
empty string instead of"NULL"
string.The text was updated successfully, but these errors were encountered: