UNPKG

mout

Version:

Modular Utilities

11 lines (10 loc) 244 B
"use strict"; exports.__esModule = true; /** * Bitwise circular shift right * http://en.wikipedia.org/wiki/Circular_shift */ function ror(val, shift) { return (val >> shift) | (val << (32 - shift)); } exports["default"] = ror;