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/5370/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 var
sys = require('sys'), sys = require('sys'),
events = require('events'); events = require('events'),
fs = require('fs');
exports.Stats = process.Stats; exports.Stats = process.Stats;