UNPKG

is-textual

Version:

check if a Buffer contains textual data

10 lines (7 loc) 172 B
module.exports = function(buf){ var len = Math.min(buf.length, 3 * 1024); for (var i = 0; i < len; i++) { if (0 === buf[i]) return false; } return true; };