????

Your IP : 18.224.93.225


Current Path : C:/inetpub/vhost/binhdinhinvest.gdtvietnam.com/api/node_modules/image-size/dist/
Upload File :
Current File : C:/inetpub/vhost/binhdinhinvest.gdtvietnam.com/api/node_modules/image-size/dist/readUInt.js

"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.readUInt = void 0;
// Abstract reading multi-byte unsigned integers
function readUInt(buffer, bits, offset, isBigEndian) {
    offset = offset || 0;
    const endian = isBigEndian ? 'BE' : 'LE';
    const methodName = ('readUInt' + bits + endian);
    return buffer[methodName].call(buffer, offset);
}
exports.readUInt = readUInt;