diff options
author | Casper Beyer <caspervonb@pm.me> | 2021-06-06 18:57:10 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-06-06 12:57:10 +0200 |
commit | 3f9187c366be362a219274ded5be9e679b96af98 (patch) | |
tree | 75dae6273afd4fa8fb300360df18bcbd2914edfc /runtime/js | |
parent | 633c5aab1f28538dde619fe755f8ec9fa77a3719 (diff) |
feat(extensions/crypto): implement subtle.digest (#10796)
Co-authored-by: Yacine Hmito yacinehmito@users.noreply.github.com
Diffstat (limited to 'runtime/js')
-rw-r--r-- | runtime/js/99_main.js | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/runtime/js/99_main.js b/runtime/js/99_main.js index 6c79468d1..f196f3008 100644 --- a/runtime/js/99_main.js +++ b/runtime/js/99_main.js @@ -314,6 +314,7 @@ delete Object.prototype.__proto__; ), crypto: util.readOnly(crypto.crypto), Crypto: util.nonEnumerable(crypto.Crypto), + SubtleCrypto: util.nonEnumerable(crypto.SubtleCrypto), fetch: util.writable(fetch.fetch), performance: util.writable(performance.performance), setInterval: util.writable(timers.setInterval), |