Sha256: 69084e8808f87c5a4f3d97cb71ed270958557746dcadc44964127bdc56edcd94

Contents?: true

Size: 881 Bytes

Versions: 43

Compression:

Stored size: 881 Bytes

Contents

var Buffer = require('buffer').Buffer

module.exports = function (buf) {
	// If the buffer is backed by a Uint8Array, a faster version will work
	if (buf instanceof Uint8Array) {
		// If the buffer isn't a subarray, return the underlying ArrayBuffer
		if (buf.byteOffset === 0 && buf.byteLength === buf.buffer.byteLength) {
			return buf.buffer
		} else if (typeof buf.buffer.slice === 'function') {
			// Otherwise we need to get a proper copy
			return buf.buffer.slice(buf.byteOffset, buf.byteOffset + buf.byteLength)
		}
	}

	if (Buffer.isBuffer(buf)) {
		// This is the slow version that will work with any Buffer
		// implementation (even in old browsers)
		var arrayCopy = new Uint8Array(buf.length)
		var len = buf.length
		for (var i = 0; i < len; i++) {
			arrayCopy[i] = buf[i]
		}
		return arrayCopy.buffer
	} else {
		throw new Error('Argument must be a Buffer')
	}
}

Version data entries

43 entries across 42 versions & 15 rubygems

Version Path
optimacms-0.1.61 spec/dummy/node_modules/to-arraybuffer/index.js
disco_app-0.18.0 test/dummy/node_modules/to-arraybuffer/index.js
disco_app-0.18.2 test/dummy/node_modules/to-arraybuffer/index.js
disco_app-0.16.1 test/dummy/node_modules/to-arraybuffer/index.js
disco_app-0.15.2 test/dummy/node_modules/to-arraybuffer/index.js
disco_app-0.18.4 test/dummy/node_modules/to-arraybuffer/index.js
disco_app-0.18.1 test/dummy/node_modules/to-arraybuffer/index.js
disco_app-0.12.7.pre.puma.pre.3 test/dummy/node_modules/to-arraybuffer/index.js
disco_app-0.14.0 test/dummy/node_modules/to-arraybuffer/index.js
disco_app-0.13.6.pre.puma.pre.3 test/dummy/node_modules/to-arraybuffer/index.js
tang-0.2.1 spec/tang_app/node_modules/to-arraybuffer/index.js
groonga-client-model-6.0.0 test/apps/rails6.0.3.5/node_modules/to-arraybuffer/index.js
groonga-client-model-6.0.0 test/apps/rails6.1.3/node_modules/to-arraybuffer/index.js
ruby2js-4.0.4 lib/tasks/testrails/node_modules/to-arraybuffer/index.js
ruby2js-4.0.3 lib/tasks/testrails/node_modules/to-arraybuffer/index.js
tang-0.2.0 spec/tang_app/node_modules/to-arraybuffer/index.js
tang-0.1.0 spec/tang_app/node_modules/to-arraybuffer/index.js
tang-0.0.9 spec/tang_app/node_modules/to-arraybuffer/index.js
enju_library-0.3.8 spec/dummy/node_modules/to-arraybuffer/index.js
ilog-0.4.1 node_modules/to-arraybuffer/index.js