Use named param in Legacy Platform

This commit is contained in:
RMidhunSuresh 2022-04-21 14:17:47 +05:30
parent 1cdc76f5a4
commit 4f23944581
1 changed files with 2 additions and 2 deletions

View File

@ -19,6 +19,6 @@ import {hkdf} from "../../utils/crypto/hkdf";
import {Platform as ModernPlatform} from "./Platform.js";
export function Platform(container, assetPaths, config, options = null) {
return new ModernPlatform(container, assetPaths, config, options, {aesjs, hkdf});
export function Platform({ container, assetPaths, config, configURL, options = null }) {
return new ModernPlatform({ container, assetPaths, config, configURL, options, cryptoExtras: { aesjs, hkdf }});
}