refactor(http): Improves base64 encoding/decoding with feature detection by SkyZeroZx · Pull Request #67002 · angular/angular

alan-agius4

JeanMeche

JeanMeche

SkyZeroZx

alan-agius4

alan-agius4

JeanMeche

thePunderWoman pushed a commit that referenced this pull request

Mar 4, 2026
…ion (#67002)

Use feature detection for `Uint8Array.prototype.toBase64` and
`Uint8Array.fromBase64`, falling back to the existing implementation
when native support is not available

PR Close #67002

thePunderWoman pushed a commit that referenced this pull request

Mar 4, 2026
Previously, Blob values were passed to `Uint8Array` this resulted in silently producing an empty array (length = 0) without throwing an error, leading to empty cached data

PR Close #67002

thePunderWoman pushed a commit that referenced this pull request

Mar 4, 2026
Previously, Blob values were passed to `Uint8Array` this resulted in silently producing an empty array (length = 0) without throwing an error, leading to empty cached data

PR Close #67002

thePunderWoman added a commit to thePunderWoman/angular that referenced this pull request

Mar 4, 2026

thePunderWoman added a commit to thePunderWoman/angular that referenced this pull request

Mar 4, 2026
Previously, Blob values were passed to `Uint8Array` this resulted in silently producing an empty array (length = 0) without throwing an error, leading to empty cached data
Previously, Blob values were passed to `Uint8Array` this resulted in silently producing an empty array (length = 0) without throwing an error, leading to empty cached data
Previously, Blob values were passed to `Uint8Array` this resulted in silently producing an empty array (length = 0) without throwing an error, leading to empty cached data

@SkyZeroZx

Ensure httpResource properly handles the response flow

SkyZeroZx