1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-11-01 09:24:20 -04:00
denoland-deno/extensions/crypto/00_webidl.js
2021-06-06 12:57:10 +02:00

26 lines
641 B
JavaScript

// 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);