summaryrefslogtreecommitdiff
path: root/lib/buffer.js
diff options
context:
space:
mode:
authorRyan Dahl <ry@tinyclouds.org>2010-09-07 15:20:26 -0700
committerRyan Dahl <ry@tinyclouds.org>2010-09-09 11:03:50 -0700
commitd3fcd1c75ac63022a875918b6990e42b65260177 (patch)
treefb7c96267effa8527f26c7b622ad18ab19212a94 /lib/buffer.js
parent6135941eeaa86733d73ecefe9df3a4b82490eff7 (diff)
downloadnode-d3fcd1c75ac63022a875918b6990e42b65260177.tar.gz
Expose SlowBuffer
Diffstat (limited to 'lib/buffer.js')
-rw-r--r--lib/buffer.js1
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;