Update ByteBuffer.js
Such update. Very versioned, wow.
This commit is contained in:
@@ -10265,7 +10265,7 @@ return jQuery;
|
||||
* @const
|
||||
* @expose
|
||||
*/
|
||||
ByteBuffer.VERSION = "3.5.3";
|
||||
ByteBuffer.VERSION = "3.5.4";
|
||||
|
||||
/**
|
||||
* Little endian constant that can be used instead of its boolean value. Evaluates to `true`.
|
||||
@@ -12285,11 +12285,10 @@ return jQuery;
|
||||
if (begin < 0 || begin > end || end > this.buffer.byteLength)
|
||||
throw RangeError("Illegal range: 0 <= "+begin+" <= "+end+" <= "+this.buffer.byteLength);
|
||||
}
|
||||
if (begin >= end) return this; // Nothing to fill
|
||||
if (begin >= end)
|
||||
return this; // Nothing to fill
|
||||
while (begin < end) this.view.setUint8(begin++, value);
|
||||
if (relative) {
|
||||
this.offset = begin;
|
||||
}
|
||||
if (relative) this.offset = begin;
|
||||
return this;
|
||||
};
|
||||
|
||||
|
Reference in New Issue
Block a user