(b64)
| 205 | } |
| 206 | |
| 207 | function byteLength (b64) { |
| 208 | // base64 is 4/3 + up to two characters of the original data |
| 209 | return b64.length * 3 / 4 - placeHoldersCount(b64) |
| 210 | } |
| 211 | |
| 212 | function toByteArray (b64) { |
| 213 | var i, j, l, tmp, placeHolders, arr |
no test coverage detected