maxtaco / coffee-script

IcedCoffeeScript
http://maxtaco.github.com/coffee-script
MIT License
728 stars 58 forks source link

suppress a missing callback deprecation warning #201

Closed oconnor663 closed 7 years ago

oconnor663 commented 7 years ago

With a recent version of Node, every line of the REPL shows this warning:

(node:6996) DeprecationWarning: Calling an asynchronous function without callback is deprecated.

This is happening because we call fs.write without a callback. Call fs.writeSync instead. Upstream CoffeeScript has the same fix.