Skip to content

Commit 2ad4e93

Browse files
committed
Proper strict mode support. Fixes #79
1 parent 96f9561 commit 2ad4e93

File tree

1 file changed

+10
-6
lines changed

1 file changed

+10
-6
lines changed

index.js

+10-6
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@
66
*/
77
/* eslint-disable no-proto */
88

9+
'use strict'
10+
911
var base64 = require('base64-js')
1012
var ieee754 = require('ieee754')
1113
var isArray = require('isarray')
@@ -88,8 +90,10 @@ function Buffer (arg) {
8890
return new Buffer(arg)
8991
}
9092

91-
this.length = 0
92-
this.parent = undefined
93+
if (!Buffer.TYPED_ARRAY_SUPPORT) {
94+
this.length = 0
95+
this.parent = undefined
96+
}
9397

9498
// Common case.
9599
if (typeof arg === 'number') {
@@ -220,6 +224,10 @@ function fromJsonObject (that, object) {
220224
if (Buffer.TYPED_ARRAY_SUPPORT) {
221225
Buffer.prototype.__proto__ = Uint8Array.prototype
222226
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
223231
}
224232

225233
function allocate (that, length) {
@@ -370,10 +378,6 @@ function byteLength (string, encoding) {
370378
}
371379
Buffer.byteLength = byteLength
372380

373-
// pre-set for values that may exist in the future
374-
Buffer.prototype.length = undefined
375-
Buffer.prototype.parent = undefined
376-
377381
function slowToString (encoding, start, end) {
378382
var loweredCase = false
379383

0 commit comments

Comments
 (0)