// this one is intended for testing stub binding on platforms where not actually implementedvar stubDevice = (process.platform === 'win32') ? "\\\\.\\NUL" : "/dev/null";
require("./").initialize(stubDevice).transfer(Buffer.from("-"), function (e,d) {
console.log(e,d);
});