HEX
Server: Microsoft-IIS/8.5
System: Windows NT YDAWBH120 6.3 build 9600 (Windows Server 2012 R2 Standard Edition) AMD64
User: tentjecom_web (0)
PHP: 7.4.14
Disabled: NONE
Upload Files
File: D:/HostingSpaces/RImmers2/portal.photomenu.nl/wwwroot/node_modules/bytebuffer/src/methods/skip.js
/**
 * Skips the next `length` bytes. This will just advance
 * @param {number} length Number of bytes to skip. May also be negative to move the offset back.
 * @returns {!ByteBuffer} this
 * @expose
 */
ByteBufferPrototype.skip = function(length) {
    if (!this.noAssert) {
        //? ASSERT_INTEGER('length');
    }
    var offset = this.offset + length;
    if (!this.noAssert) {
        if (offset < 0 || offset > /*?= CAPACITY */)
            throw RangeError("Illegal length: 0 <= "+this.offset+" + "+length+" <= "+/*?= CAPACITY */);
    }
    this.offset = offset;
    return this;
};