(b64)
| 37 | } |
| 38 | |
| 39 | function byteLength (b64) { |
| 40 | // base64 is 4/3 + up to two characters of the original data |
| 41 | return (b64.length * 3 / 4) - placeHoldersCount(b64) |
| 42 | } |
| 43 | |
| 44 | function toByteArray (b64) { |
| 45 | var i, l, tmp, placeHolders, arr |
no test coverage detected
searching dependent graphs…