The istypedarray
function from the underscore.js library in javascript is used to check whether the given value is a typed array or not.
Here's how you can use it in your code:
index.tsx343 chars12 lines
Note that the _.istypedarray
function returns a boolean value - true
if the given value is a typed array, false
otherwise.
gistlibby LogSnag