Is there any way to increase this number?
console.log(79753741930607500+1) // 79753741930607500
console.log(79753741930607499+3) // 79753741930607500
upd:
zip encrypt/decrypt functions use 64bit numbers:
keys[0] = 305419896;
keys[1] = 591751049;
keys[2] = 878082192;
this.update_keys=function(c){
keys[0]=crc32.crc32(keys[0],c);
keys[1]=(((keys[1]+(keys[0]&0xff))*0x08088405+1)& 0xffffffff) >>>0;
keys[2] = crc32.crc32(keys[2], keys[1] >>> 24);
};
keys[1] intermediate calculation may be more 79753741930607500.
exists universal solution to nodejs and browsers can use 64bit integers?