Server IP : 162.213.251.212 / Your IP : 3.145.64.2 [ Web Server : LiteSpeed System : Linux business55.web-hosting.com 4.18.0-553.lve.el8.x86_64 #1 SMP Mon May 27 15:27:34 UTC 2024 x86_64 User : allssztx ( 535) PHP Version : 8.1.31 Disable Function : NONE Domains : 1 Domains MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/allssztx/needapair.com/node_modules/pizzip/js/ |
Upload File : |
"use strict"; var utils = require("./utils.js"); /** * An object to write any content to an Uint8Array. * @constructor * @param {number} length The length of the array. */ function Uint8ArrayWriter(length) { this.data = new Uint8Array(length); this.index = 0; } Uint8ArrayWriter.prototype = { /** * Append any content to the current array. * @param {Object} input the content to add. */ append: function append(input) { if (input.length !== 0) { // with an empty Uint8Array, Opera fails with a "Offset larger than array size" input = utils.transformTo("uint8array", input); this.data.set(input, this.index); this.index += input.length; } }, /** * Finalize the construction an return the result. * @return {Uint8Array} the generated array. */ finalize: function finalize() { return this.data; } }; module.exports = Uint8ArrayWriter;