(str)
| 114047 | return byteArray; |
| 114048 | } |
| 114049 | function base64ToBytes(str) { |
| 114050 | return base64.toByteArray(base64clean(str)); |
| 114051 | } |
| 114052 | function blitBuffer(src, dst, offset, length) { |
| 114053 | for(var i = 0; i < length; ++i){ |
| 114054 | if (i + offset >= dst.length || i >= src.length) break; |
no test coverage detected