Skip to content

Commit

Permalink
buffer: alias toLocaleString to toString
Browse files Browse the repository at this point in the history
Make Buffer.prototype.toLocaleString an alias of Buffer.prototype.toString
so that the output is actually useful.

Fixes: #8147
PR-URL: #8148
Reviewed-By: Anna Henningsen <anna@addaleax.net>
Reviewed-By: Trevor Norris <trev.norris@gmail.com>
  • Loading branch information
jasnell committed Aug 23, 2016
1 parent 0764bc4 commit 9cee8b1
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 0 deletions.
2 changes: 2 additions & 0 deletions lib/buffer.js
Expand Up @@ -1332,3 +1332,5 @@ Buffer.prototype.swap64 = function swap64() {
}
return swap64n(this);
};

Buffer.prototype.toLocaleString = Buffer.prototype.toString;
6 changes: 6 additions & 0 deletions test/parallel/test-buffer-alloc.js
Expand Up @@ -1502,3 +1502,9 @@ assert.throws(() => Buffer.alloc({ valueOf: () => 1 }),
/"size" argument must be a number/);
assert.throws(() => Buffer.alloc({ valueOf: () => -1 }),
/"size" argument must be a number/);

assert.strictEqual(Buffer.prototype.toLocaleString, Buffer.prototype.toString);
{
const buf = Buffer.from('test');
assert.strictEqual(buf.toLocaleString(), buf.toString());
}

0 comments on commit 9cee8b1

Please sign in to comment.