I have a stdin application that sets `rawMode` to `utf8`, but I get a `TypeError` on that line when using this module. A quick fix for me was to assign `setRawMode` as a noop: ``` stdin.setRawMode = function() {}; ```