1.0.3 • Published 2 years ago

workthethread v1.0.3

Weekly downloads
-
License
ISC
Repository
github
Last release
2 years ago

WorkTheThread

Also having a hard time with Worker Threads? With this package you can just throw in a function and some arguments and it will do the rest on a different thread!

const WorkTheThread = require('WorkTheThread');

function add(x, y) {
  return x + y;
}

WorkTheThread(add, 2, 5); // returns 7
1.0.3

2 years ago

1.0.2

2 years ago

1.0.1

2 years ago