When rtlcss is called with both --silent and --stdin to take the css from stdin and output to stdout, the --silent flag results in no output since console.log is redefined to be an empty function. Using process.stdout.write instead of console.log fixes this issue.