diff options
author | Ryan Dahl <ry@tinyclouds.org> | 2010-09-07 15:20:26 -0700 |
---|---|---|
committer | Ryan Dahl <ry@tinyclouds.org> | 2010-09-09 11:03:50 -0700 |
commit | d3fcd1c75ac63022a875918b6990e42b65260177 (patch) | |
tree | fb7c96267effa8527f26c7b622ad18ab19212a94 /lib/buffer.js | |
parent | 6135941eeaa86733d73ecefe9df3a4b82490eff7 (diff) | |
download | node-d3fcd1c75ac63022a875918b6990e42b65260177.tar.gz |
Expose SlowBuffer
Diffstat (limited to 'lib/buffer.js')
-rw-r--r-- | lib/buffer.js | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/buffer.js b/lib/buffer.js index 25ab22b5c..e20b3d5eb 100644 --- a/lib/buffer.js +++ b/lib/buffer.js @@ -156,6 +156,7 @@ function Buffer (subject, encoding, offset) { SlowBuffer.makeFastBuffer(this.parent, this, this.offset, this.length); } +exports.SlowBuffer = SlowBuffer; exports.Buffer = Buffer; Buffer.poolSize = 8*1024; |