(str, length = 512)
| 98 | } |
| 99 | |
| 100 | export function chunkString(str, length = 512) { |
| 101 | return str.match(new RegExp('.{1,' + length + '}', 'g')) || []; |
| 102 | } |
| 103 | |
| 104 | export function rotateRight(value, r) { // https://github.com/dfrankland/bitwise-rotation/blob/master/src/index.js |
| 105 | const bitWidth = 32; |
no outgoing calls
no test coverage detected