diff options
author | David Sherret <dsherret@users.noreply.github.com> | 2021-10-12 09:58:04 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-10-12 09:58:04 -0400 |
commit | 9b1f0c8ba3c8ca7a7207519889b6509bfc10370e (patch) | |
tree | 8660a11544f221e1a295c5e98c5907532523f351 /ext/crypto/00_crypto.js | |
parent | b1e7452cd310ead7e6379f694d660e935641e596 (diff) |
chore: upgrade crates based on deno ast 0.3 (#12403)
Diffstat (limited to 'ext/crypto/00_crypto.js')
-rw-r--r-- | ext/crypto/00_crypto.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/crypto/00_crypto.js b/ext/crypto/00_crypto.js index 4c2f3e41c..2885a9699 100644 --- a/ext/crypto/00_crypto.js +++ b/ext/crypto/00_crypto.js @@ -225,7 +225,7 @@ if (idlType === "BufferSource" && idlValue) { normalizedAlgorithm[member] = TypedArrayPrototypeSlice( new Uint8Array( - (ArrayBufferIsView(idlValue) ? idlValue.buffer : idlValue), + ArrayBufferIsView(idlValue) ? idlValue.buffer : idlValue, idlValue.byteOffset ?? 0, idlValue.byteLength, ), |