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
pull/22966/head
Felix Geisendörfer 2010-03-08 19:03:43 +01:00 committed by Ryan Dahl
parent 44dde5f24c
commit 39472709f0
1 changed files with 2 additions and 1 deletions

View File

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