UNPKG

adbkit

Version:

A pure Node.js client for the Android Debug Bridge.

16 lines (13 loc) 264 B
var fs, out; fs = require('fs'); if (process.env.ADBKIT_DUMP) { out = fs.createWriteStream('adbkit.dump'); module.exports = function(chunk) { out.write(chunk); return chunk; }; } else { module.exports = function(chunk) { return chunk; }; }