]> zoso.dev Git - buffer.git/commitdiff
Add explanatory comment
authorFeross Aboukhadijeh <feross@feross.org>
Mon, 8 Aug 2016 08:16:12 +0000 (01:16 -0700)
committerFeross Aboukhadijeh <feross@feross.org>
Mon, 8 Aug 2016 08:16:12 +0000 (01:16 -0700)
In response to @dcposch's feedback

index.js

index 834bea0de5fc1941dae7f08426cf38a96e5bd547..d5347f387dbd6de46f74818b6b76ed412d3f344d 100644 (file)
--- a/index.js
+++ b/index.js
@@ -231,6 +231,9 @@ function fromString (that, string, encoding) {
   var actual = that.write(string, encoding)
 
   if (actual !== length) {
+    // Writing a hex string, for example, that contains invalid characters will
+    // cause everything after the first invalid character to be ignored. (e.g.
+    // 'abxxcd' will be treated as 'ab')
     that = that.slice(0, actual)
   }