diff options
author | Rod Vagg <rod@vagg.org> | 2014-03-30 19:51:01 +1100 |
---|---|---|
committer | Timothy J Fontaine <tjfontaine@gmail.com> | 2014-07-31 08:58:33 -0700 |
commit | 9d281934df9c7f38c4c750640dc7a915315ad125 (patch) | |
tree | b7b4ea94ac94e8076804268f41a8de34b187ed8b | |
parent | befbbad0513c5f1075c573570a678d148b645a82 (diff) | |
download | node-9d281934df9c7f38c4c750640dc7a915315ad125.tar.gz |
streams: remove unused require('assert')
-rw-r--r-- | lib/_stream_writable.js | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/lib/_stream_writable.js b/lib/_stream_writable.js index 257a400fa..f02eb4edc 100644 --- a/lib/_stream_writable.js +++ b/lib/_stream_writable.js @@ -27,7 +27,6 @@ module.exports = Writable; Writable.WritableState = WritableState; var util = require('util'); -var assert = require('assert'); var Stream = require('stream'); util.inherits(Writable, Stream); |