Update API docs
This commit is contained in:
parent
b9634047e8
commit
f7a3618af9
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
|
@ -301,6 +301,14 @@ function isValid(input as dynamic) as boolean
|
||||||
return input <> invalid
|
return input <> invalid
|
||||||
end function
|
end function
|
||||||
|
|
||||||
|
' Returns whether or not all items in passed array are valid
|
||||||
|
function isAllValid(input as object) as boolean
|
||||||
|
for each item in input
|
||||||
|
if not isValid(item) then return false
|
||||||
|
end for
|
||||||
|
return true
|
||||||
|
end function
|
||||||
|
|
||||||
' Returns whether or not passed value is valid and not empty
|
' Returns whether or not passed value is valid and not empty
|
||||||
' Accepts a string, or any countable type (arrays and lists)
|
' Accepts a string, or any countable type (arrays and lists)
|
||||||
function isValidAndNotEmpty(input as dynamic) as boolean
|
function isValidAndNotEmpty(input as dynamic) as boolean
|
||||||
|
|
Loading…
Reference in New Issue
Block a user