]> zoso.dev Git - buffer.git/commitdiff
Custom implementation of toLocaleString()
authorVolker Mische <volker.mische@gmail.com>
Sat, 20 Jan 2018 22:18:19 +0000 (23:18 +0100)
committerVolker Mische <volker.mische@gmail.com>
Sun, 21 Jan 2018 02:02:56 +0000 (03:02 +0100)
Make `toLocaleString()` to point to the same implementation as `toString()`.

index.js
test/node/test-buffer-alloc.js

index a4c33f2902ee24982856f109c70dd53421a6e446..b30bb96872b0c53cbef4e9d30bfed1fd600482e8 100644 (file)
--- a/index.js
+++ b/index.js
@@ -532,6 +532,8 @@ Buffer.prototype.toString = function toString () {
   return slowToString.apply(this, arguments)
 }
 
+Buffer.prototype.toLocaleString = Buffer.prototype.toString
+
 Buffer.prototype.equals = function equals (b) {
   if (!Buffer.isBuffer(b)) throw new TypeError('Argument must be a Buffer')
   if (this === b) return true
index 0eb4f0117156262695ef400790ee91673d02e95e..32a9763bb6d2daaeef9cac169831e804f78bee31 100644 (file)
@@ -1005,13 +1005,13 @@ assert.throws(() => Buffer.alloc({ valueOf: () => 1 }),
               /"size" argument must be of type number/);
 assert.throws(() => Buffer.alloc({ valueOf: () => -1 }),
               /"size" argument must be of type number/);
-/*
+
 assert.strictEqual(Buffer.prototype.toLocaleString, Buffer.prototype.toString);
 {
   var buf = Buffer.from('test');
   assert.strictEqual(buf.toLocaleString(), buf.toString());
 }
-
+/*
 common.expectsError(() => {
   Buffer.alloc(0x1000, 'This is not correctly encoded', 'hex');
 }, {