Skip to content
Open
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
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
= gsql_is_not_empty()
= gsql_is_not_empty_string()

Returns true if a string is empty after removing all white space.
Returns false otherwise.
This function does not alter the input the token.

== Syntax

`gsql_is_not_empty( token )`
`gsql_is_not_empty_string( token )`

== Return value

Expand All @@ -16,6 +16,6 @@ True if the string is empty after removing all white space from the string.
== Example

----
gsql_is_not_empty("h e ll o") - true
gsql_is_not_empty(" ") -> false
----
gsql_is_not_empty_string("h e ll o") - true
gsql_is_not_empty_string(" ") -> false
----