diff options
author | Paul Thompson <paul.thompson773@gmail.com> | 2020-08-11 22:00:53 +1000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-08-11 14:00:53 +0200 |
commit | eed77aa0208e603dac908a240dd66ece422e9dd7 (patch) | |
tree | 263f539c6bfe40d19bb8b8c591466887e3a686a7 /op_crates | |
parent | d7077b9073dec6fb1f4b07d5575ef416997c19a9 (diff) |
feat(web): FileReader API (#6673)
Diffstat (limited to 'op_crates')
-rw-r--r-- | op_crates/web/08_text_encoding.js | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/op_crates/web/08_text_encoding.js b/op_crates/web/08_text_encoding.js index b8959142f..bf2e20049 100644 --- a/op_crates/web/08_text_encoding.js +++ b/op_crates/web/08_text_encoding.js @@ -835,4 +835,6 @@ window.TextDecoder = TextDecoder; window.atob = atob; window.btoa = btoa; + window.__bootstrap = (window.__bootstrap || {}); + window.__bootstrap.base64 = base64; })(this); |