Initial commit
[yaffs-website] / node_modules / gulp / node_modules / vinyl / lib / isBuffer.js
1 var buf = require('buffer');
2 var Buffer = buf.Buffer;
3
4 // could use Buffer.isBuffer but this is the same exact thing...
5 module.exports = function(o) {
6   return typeof o === 'object' && o instanceof Buffer;
7 };