Module: sources/cores/typed-arrays/isUint8Array

Export function to validate if a value is a unsigned int 8 array buffer
Author:
License:
Source:

Example

import { isUint8Array } from 'itee-validators'

if( isUint8Array( value ) ) {
    //...
} else {
    //...
}

Methods


<static> isNotUint8Array(data)

Check if given data is not a unsigned int 8 array
Parameters:
Name Type Description
data * The data to check against the unsigned int 8 array type
Source:
Returns:
true if data is not a unsigned int 8 array , false otherwise.
Type
boolean

<static> isUint8Array(data)

Check if given data is a unsigned int 8 array
Parameters:
Name Type Description
data * The data to check against the unsigned int 8 array type
Source:
Returns:
true if data is a unsigned int 8 array , false otherwise.
Type
boolean