-
Notifications
You must be signed in to change notification settings - Fork 0
Is_base64
hpgDesigns edited this page Aug 8, 2021
·
1 revision
Checks whether or not the given value is base64 and returns the result.
| Parameter | Data Type | Description |
|---|---|---|
| val | variant | the value to check if it is base64 |
boolean: Returns whether or not the value is base64.
// demonstrates checking if a character is base64
if (is_base64(val)) {
// is base64
} else {
// is not base64
}
NOTOC
Category:Function:Real
This is number 1