summaryrefslogtreecommitdiff
path: root/extensions/crypto/00_webidl.js
diff options
context:
space:
mode:
Diffstat (limited to 'extensions/crypto/00_webidl.js')
-rw-r--r--extensions/crypto/00_webidl.js26
1 files changed, 0 insertions, 26 deletions
diff --git a/extensions/crypto/00_webidl.js b/extensions/crypto/00_webidl.js
deleted file mode 100644
index 4545526bf..000000000
--- a/extensions/crypto/00_webidl.js
+++ /dev/null
@@ -1,26 +0,0 @@
-// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
-"use strict";
-
-((window) => {
- const webidl = window.__bootstrap.webidl;
- webidl.converters["AlgorithmIdentifier"] = (V, opts) => {
- // Union for (object or DOMString)
- if (typeof V == "object") {
- return webidl.converters["object"](V, opts);
- }
-
- return webidl.converters["DOMString"](V, opts);
- };
-
- const algorithmDictionary = [
- {
- key: "name",
- converter: webidl.converters["DOMString"],
- },
- ];
-
- webidl.converters["Algorithm"] = webidl.createDictionaryConverter(
- "Algorithm",
- algorithmDictionary,
- );
-})(this);