]> zoso.dev Git - buffer.git/commitdiff
indexes test passes
authorJames Halliday <mail@substack.net>
Wed, 20 Mar 2013 17:56:17 +0000 (10:56 -0700)
committerJames Halliday <mail@substack.net>
Wed, 20 Mar 2013 17:56:17 +0000 (10:56 -0700)
index.js

index 1d81be08ab7bb41e25895789e987a5b9df04d36e..d6511fdf4cf7ca35261d7ecb9baa9d854dfb9c24 100644 (file)
--- a/index.js
+++ b/index.js
@@ -379,14 +379,19 @@ function Buffer(subject, encoding, offset) {
       for (var i = 0; i < this.length; i++) {
         if (subject instanceof Buffer) {
           this.parent[i + this.offset] = subject.readUInt8(i);
+          this[i] = subject.readUInt8(i);
         }
         else {
           this.parent[i + this.offset] = subject[i];
+          this[i] = subject[i];
         }
       }
     } else if (type == 'string') {
       // We are a string
       this.length = this.write(subject, 0, encoding);
+      for (var i = 0; i < this.length; i++) {
+        this[i] = this.parent[i];
+      }
     }
   }