@adviser/cement 0.2.27 → 0.2.28

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/index.cjs CHANGED
@@ -9363,6 +9363,7 @@ function digestSHA256(data) {
9363
9363
  function toCryptoRuntime(cryptoOpts = {}) {
9364
9364
  const runtime = {
9365
9365
  importKey: cryptoOpts.importKey || crypto.subtle.importKey.bind(crypto.subtle),
9366
+ exportKey: cryptoOpts.exportKey || crypto.subtle.exportKey.bind(crypto.subtle),
9366
9367
  encrypt: cryptoOpts.encrypt || crypto.subtle.encrypt.bind(crypto.subtle),
9367
9368
  decrypt: cryptoOpts.decrypt || crypto.subtle.decrypt.bind(crypto.subtle),
9368
9369
  randomBytes: cryptoOpts.randomBytes || randomBytes,