]> zoso.dev Git - buffer.git/commitdiff
Only test for slice() parent tracking in supported browsers
authorFeross Aboukhadijeh <feross@feross.org>
Wed, 1 Jan 2014 02:30:36 +0000 (18:30 -0800)
committerFeross Aboukhadijeh <feross@feross.org>
Wed, 1 Jan 2014 02:30:36 +0000 (18:30 -0800)
index.js
test/slice.js

index b39a62433246ea9ae3e1068a240541505b232bbd..f8ce47200cb9a090f89afe472b9e9b1b8fcd577d 100644 (file)
--- a/index.js
+++ b/index.js
@@ -7,11 +7,11 @@ exports.INSPECT_MAX_BYTES = 50
 Buffer.poolSize = 8192
 
 /**
- * If `browserSupport`:
+ * If `Buffer._useTypedArrays`:
  *   === true    Use Uint8Array implementation (fastest)
  *   === false   Use Object implementation (compatible down to IE6)
  */
-var browserSupport = (function () {
+Buffer._useTypedArrays = (function () {
    // Detect if browser supports Typed Arrays. Supported browsers are IE 10+,
    // Firefox 4+, Chrome 7+, Safari 5.1+, Opera 11.6+, iOS 4.2+.
    if (typeof Uint8Array === 'undefined' || typeof ArrayBuffer === 'undefined')
@@ -70,7 +70,7 @@ function Buffer (subject, encoding, noZero) {
     throw new Error('First argument needs to be a number, array or string.')
 
   var buf
-  if (browserSupport) {
+  if (Buffer._useTypedArrays) {
     // Preferred: Return an augmented `Uint8Array` instance for best performance
     buf = augment(new Uint8Array(length))
   } else {
@@ -93,7 +93,7 @@ function Buffer (subject, encoding, noZero) {
     }
   } else if (type === 'string') {
     buf.write(subject, 0, encoding)
-  } else if (type === 'number' && !browserSupport && !noZero) {
+  } else if (type === 'number' && !Buffer._useTypedArrays && !noZero) {
     for (i = 0; i < length; i++) {
       buf[i] = 0
     }
@@ -387,7 +387,7 @@ Buffer.prototype.slice = function (start, end) {
   start = clamp(start, len, 0)
   end = clamp(end, len, len)
 
-  if (browserSupport) {
+  if (Buffer._useTypedArrays) {
     return augment(this.subarray(start, end))
   } else {
     var sliceLen = end - start
index 2959911f234d1bddbdf5794c54b658f532f3c3bb..c23a3b1fbbd226b3805c1c06be4d908d6affbc14 100644 (file)
@@ -2,6 +2,8 @@ var B = require('../index.js').Buffer
 var test = require('tape')
 
 test('modifying buffer created by .slice() modifies original memory', function (t) {
+  if (!B._useTypedArrays) return t.end()
+
   var buf1 = new Buffer(26)
   for (var i = 0 ; i < 26 ; i++) {
     buf1[i] = i + 97 // 97 is ASCII a
@@ -17,6 +19,8 @@ test('modifying buffer created by .slice() modifies original memory', function (
 })
 
 test('modifying parent buffer modifies .slice() buffer\'s memory', function (t) {
+  if (!B._useTypedArrays) return t.end()
+
   var buf1 = new Buffer(26)
   for (var i = 0 ; i < 26 ; i++) {
     buf1[i] = i + 97 // 97 is ASCII a