Skip to content
Snippets Groups Projects
Select Git revision
  • c474540c8e9b354b269b7459e27e04082aa30d03
  • main default protected
  • dev protected
  • hotfixes-oct-2022
  • refactor/avatar-cell
  • 1.1.5
  • 1.1.4
  • 1.1.3
  • 1.1
  • 1.0.8
  • 1.0.7
  • 1.0.6
12 results

SideMenuPresentTransitionTests.swift

Blame
  • dmIndexedDbWorker.js 765 B
    ////////////////////////////////////////////////////////////////////////////////
    // Copyright © 2022 xx foundation                                             //
    //                                                                            //
    // Use of this source code is governed by a license that can be found in the  //
    // LICENSE file.                                                              //
    ////////////////////////////////////////////////////////////////////////////////
    
    importScripts('wasm_exec.js');
    
    const go = new Go();
    const binPath = 'xxdk-dmIndexedDkWorker.wasm'
    WebAssembly.instantiateStreaming(fetch(binPath), go.importObject).then((result) => {
        go.run(result.instance);
        LogLevel(1);
    }).catch((err) => {
        console.error(err);
    });