(b64)
| 3943 | } |
| 3944 | |
| 3945 | function byteLength (b64) { |
| 3946 | // base64 is 4/3 + up to two characters of the original data |
| 3947 | return b64.length * 3 / 4 - placeHoldersCount(b64) |
| 3948 | } |
| 3949 | |
| 3950 | function toByteArray (b64) { |
| 3951 | var i, j, l, tmp, placeHolders, arr |
no test coverage detected