PHP 7.4.33
Preview: index.js Size: 881 B
/var/www/coop-podio-sms.bitkit.dk/httpdocs/node_modules/to-arraybuffer/index.js
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')
	}
}

Directory Contents

Dirs: 0 × Files: 8
Name Size Perms Modified Actions
45 B lrw-r--r-- 2016-01-13 02:55:51
Edit Download
36 B lrw-r--r-- 2016-01-13 02:55:30
Edit Download
303 B lrw-r--r-- 2016-01-13 03:29:02
Edit Download
881 B lrw-r--r-- 2016-01-13 03:28:45
Edit Download
1.06 KB lrw-r--r-- 2016-01-13 01:40:16
Edit Download
1.78 KB lrw-r--r-- 2024-05-28 16:34:57
Edit Download
940 B lrw-r--r-- 2016-01-13 04:01:05
Edit Download
1.29 KB lrw-r--r-- 2016-01-13 03:07:42
Edit Download
If ZipArchive is unavailable, a .tar will be created (no compression).