UNPKG
util
Version:
latest (0.12.5)
0.12.5
0.12.4
0.12.3
0.12.2
0.12.1
0.12.0
0.11.1
0.11.0
0.10.4
0.10.3
0.10.2
0.10.1
0.10.0
0.4.9
Node.js's util module for all engines
github.com/browserify/node-util
browserify/node-util
util
/
support
/
isBufferBrowser.js
6 lines
•
203 B
JavaScript
View Raw
1
2
3
4
5
6
module
.exports =
function
isBuffer
(arg)
{
return
arg
&& typeof
arg
===
'object'
&& typeof
arg
.copy ===
'function'
&& typeof
arg
.fill ===
'function'
&& typeof
arg
.readUInt8 ===
'function'
; }