Skip to content

Commit

Permalink
Merge branch 'master' of github.com:tbela99/workerize
Browse files Browse the repository at this point in the history
  • Loading branch information
tbela99 committed Jun 22, 2023
2 parents cc9e9be + 9af779c commit 2ee11dc
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ All class methods are turned into async proxies
import {
workerize,
dispose
} from "../src/worker.js";
} from "@tbela99/workerize";

const Rectangle = workerize(class {

Expand Down Expand Up @@ -67,7 +67,7 @@ The function is turned into an async proxy
import {
workerize,
dispose
} from "../src/worker.js";
} from "@tbela99/workerize";

const func = workerize(function () {

Expand Down Expand Up @@ -120,7 +120,7 @@ you can inject javascript libraries into the worker context
import {
workerize,
dispose
} from "../src/worker.js";
} from "@tbela99/workerize";

const animal = workerize(function (...args) {

Expand Down Expand Up @@ -155,4 +155,4 @@ deserialized as JSON data. All methods, property settter and getter are removed.

## License

MIT OR LGPL-3.0
MIT OR LGPL-3.0

0 comments on commit 2ee11dc

Please sign in to comment.