|
6 | 6 | */
|
7 | 7 | /* eslint-disable no-proto */
|
8 | 8 |
|
| 9 | +'use strict' |
| 10 | + |
9 | 11 | var base64 = require('base64-js')
|
10 | 12 | var ieee754 = require('ieee754')
|
11 | 13 | var isArray = require('isarray')
|
@@ -88,8 +90,10 @@ function Buffer (arg) {
|
88 | 90 | return new Buffer(arg)
|
89 | 91 | }
|
90 | 92 |
|
91 |
| - this.length = 0 |
92 |
| - this.parent = undefined |
| 93 | + if (!Buffer.TYPED_ARRAY_SUPPORT) { |
| 94 | + this.length = 0 |
| 95 | + this.parent = undefined |
| 96 | + } |
93 | 97 |
|
94 | 98 | // Common case.
|
95 | 99 | if (typeof arg === 'number') {
|
@@ -220,6 +224,10 @@ function fromJsonObject (that, object) {
|
220 | 224 | if (Buffer.TYPED_ARRAY_SUPPORT) {
|
221 | 225 | Buffer.prototype.__proto__ = Uint8Array.prototype
|
222 | 226 | Buffer.__proto__ = Uint8Array
|
| 227 | +} else { |
| 228 | + // pre-set for values that may exist in the future |
| 229 | + Buffer.prototype.length = undefined |
| 230 | + Buffer.prototype.parent = undefined |
223 | 231 | }
|
224 | 232 |
|
225 | 233 | function allocate (that, length) {
|
@@ -370,10 +378,6 @@ function byteLength (string, encoding) {
|
370 | 378 | }
|
371 | 379 | Buffer.byteLength = byteLength
|
372 | 380 |
|
373 |
| -// pre-set for values that may exist in the future |
374 |
| -Buffer.prototype.length = undefined |
375 |
| -Buffer.prototype.parent = undefined |
376 |
| - |
377 | 381 | function slowToString (encoding, start, end) {
|
378 | 382 | var loweredCase = false
|
379 | 383 |
|
|
0 commit comments