Determines whether a value is stored as binary data.
isBinary(value)
returns boolean
Name | Type | Required | Default | Description |
---|---|---|---|---|
value | any | Yes |
toBase64() returns base64 encoded data which is not binary
isBinary( toBase64(1) )
toBinary() expects base64 encoded data and returns binary data
isBinary( toBinary(toBase64(1)) )