]> zoso.dev Git - buffer.git/commitdiff
fill with 0s for Buffer(num)
authorJames Halliday <mail@substack.net>
Wed, 20 Mar 2013 19:07:09 +0000 (12:07 -0700)
committerJames Halliday <mail@substack.net>
Wed, 20 Mar 2013 19:07:09 +0000 (12:07 -0700)
index.js

index 7e61f58eedb1fceb32a35cc995573fff0da27f40..aa62bdcbc77d09cd89f1ebe7861b023f3e752b64 100644 (file)
--- a/index.js
+++ b/index.js
@@ -6,6 +6,7 @@ function Buffer(subject, encoding, offset) {
   if (!(this instanceof Buffer)) {
     return new Buffer(subject, encoding, offset);
   }
+  this.parent = this;
 
   var type;
 
@@ -46,6 +47,10 @@ function Buffer(subject, encoding, offset) {
     } else if (type == 'string') {
       // We are a string
       this.length = this.write(subject, 0, encoding);
+    } else if (type === 'number') {
+      for (var i = 0; i < this.length; i++) {
+        this[i] = 0;
+      }
     }
   }
 }