Javascript binary file reading

前端 未结 3 1701
温柔的废话
温柔的废话 2021-01-14 22:56

From here:

_shl: function (a, b){
        for (++b; --b; a = ((a %= 0x7fffffff + 1) & 0x40000000) == 0x40000000 ? a * 2 : (a - 0x40000000) * 2 + 0x7fffff         


        
3条回答
  •  感情败类
    2021-01-14 23:45

    I found this one and it is very well documented: https://github.com/vjeux/jParser

提交回复
热议问题