Your IP : 216.73.216.14


Current Path : /var/www/fidelitychain/www/node_modules/wkx/lib/
Upload File :
Current File : /var/www/fidelitychain/www/node_modules/wkx/lib/zigzag.js

module.exports = {
    encode: function (value) {
        return (value << 1) ^ (value >> 31);
    },
    decode: function (value) {
        return (value >> 1) ^ (-(value & 1));
    }
};