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')
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 {
}
} 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
}
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
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
})
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