gggscript
Results
2
comments of
gggscript
At [/lib/helper.js line 14](https://github.com/ironSource/node-regedit/blob/master/lib/helper.js#L14) you need to patch the write function to ```js function write(m) { if (m) { var b = module.exports.encode(m) debug(b) return stream.write(b) } return false }...
Or if you want to support falsy values, change the whole function to: ```js module.exports.writeArrayToStream = function(arr, stream, optionalCallback) { function write(m) { if (m) { var b = module.exports.encode(m)...