fs.createWriteStream throws fs undefined error

The improved test suite now catches this bug, so hopefully thing like
this will not happen again.

See: http://github.com/ry/node/issues#issue/75
This commit is contained in:
Felix Geisendörfer 2010-03-08 19:03:43 +01:00 коммит произвёл Ryan Dahl
Родитель 44dde5f24c
Коммит 39472709f0
1 изменённых файлов: 2 добавлений и 1 удалений

Просмотреть файл

@ -1,6 +1,7 @@
var
sys = require('sys'),
events = require('events');
events = require('events'),
fs = require('fs');
exports.Stats = process.Stats;