Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
X
xxdk-wasm
Manage
Activity
Members
Labels
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Terraform modules
Analyze
Contributor analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
elixxir
xxdk-wasm
Commits
1330dcb4
Commit
1330dcb4
authored
1 year ago
by
Richard T. Carback III
Browse files
Options
Downloads
Patches
Plain Diff
Delete logFileWorker
parent
3ca58e38
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
logging/workerThread/logFileWorker.js
+0
-21
0 additions, 21 deletions
logging/workerThread/logFileWorker.js
with
0 additions
and
21 deletions
logging/workerThread/logFileWorker.js
deleted
100644 → 0
+
0
−
21
View file @
3ca58e38
////////////////////////////////////////////////////////////////////////////////
// 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
isReady
=
new
Promise
((
resolve
)
=>
{
self
.
onWasmInitialized
=
resolve
;
});
const
go
=
new
Go
();
const
binPath
=
'
xxdk-logFileWorker.wasm
'
WebAssembly
.
instantiateStreaming
(
fetch
(
binPath
),
go
.
importObject
).
then
(
async
(
result
)
=>
{
go
.
run
(
result
.
instance
);
await
isReady
;
}).
catch
((
err
)
=>
{
console
.
error
(
err
);
});
\ No newline at end of file
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment