rol.js 221 B

12345678910
  1. /**
  2. * Bitwise circular shift left
  3. * http://en.wikipedia.org/wiki/Circular_shift
  4. */
  5. function rol(val, shift){
  6. return (val << shift) | (val >> (32 - shift));
  7. }
  8. module.exports = rol;