UNPKG
@thewtex/vtk.js-esm
Version:
latest (18.4.2-77b22c7239.1)
18.4.2-77b22c7239.1
18.4.2-77b22c7239
Visualization Toolkit for the Web
github.com/kitware/vtk-js
kitware/vtk-js
@thewtex/vtk.js-esm
/
vendor
/
util
/
support
/
isBufferBrowser.js
9 lines
(7 loc)
•
244 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
var
isBufferBrowser =
function
isBuffer
(
arg
) {
return
arg &&
typeof
arg ===
'object'
&&
typeof
arg.
copy
===
'function'
&&
typeof
arg.
fill
===
'function'
&&
typeof
arg.
readUInt8
===
'function'
; };
export
{ isBufferBrowser
as
i };