]> zoso.dev Git - buffer.git/commitdiff
limited slicing implementation
authorrafael <rvalle@livelens.net>
Tue, 13 Aug 2013 07:10:36 +0000 (09:10 +0200)
committerrafael <rvalle@livelens.net>
Tue, 13 Aug 2013 07:10:36 +0000 (09:10 +0200)
index.js

index 7d95278ae2136ea32db2c2515408b39e7fcd9408..1875afc4c1b584728f0e7e28a54da2298c3bcbe4 100644 (file)
--- a/index.js
+++ b/index.js
@@ -17,7 +17,11 @@ function Buffer(subject, encoding, offset) {
   // Are we slicing?
   if (typeof offset === 'number') {
     this.length = coerce(encoding);
-    this.offset = offset;
+    // slicing works, with limitations (no parent tracking/update)
+    // check https://github.com/toots/buffer-browserify/issues/19
+    for (var i = 0; i < this.length; i++) {
+        this[i] = subject.get(i+offset);
+    }
   } else {
     // Find the length
     switch (type = typeof subject) {