Skip to content

expressions.dart - support zero parameters. #109

Description

@philsnook

In order to implement a function such as LEN... which checks the length of a string.

Please add the following check to isNumber under expressions.dart

This allows zero an empty string to be evaluated as false.

Ref: Line 334

bool isNumber(String st) {
    if (st.isEmpty) {
      return false;
    }
.....

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions