async-array-buffer-worker
Advanced tools
Comparing version 3.0.0 to 3.0.1
@@ -1,1 +0,1 @@ | ||
export * from './array-buffer-worker-custom-definition'; | ||
export * from './async-array-buffer-worker-custom-definition'; |
@@ -1,1 +0,1 @@ | ||
export * from './array-buffer-worker-definition'; | ||
export * from './async-array-buffer-worker-definition'; |
@@ -74,3 +74,3 @@ { | ||
"types": "build/es2015/module.d.ts", | ||
"version": "3.0.0" | ||
"version": "3.0.1" | ||
} |
@@ -1,1 +0,1 @@ | ||
export * from './array-buffer-worker-custom-definition'; | ||
export * from './async-array-buffer-worker-custom-definition'; |
import { createWorker } from 'worker-factory'; | ||
import { allocate } from './helpers/allocate'; | ||
import { IArrayBufferWorkerCustomDefinition } from './interfaces'; | ||
import { IAsyncArrayBufferWorkerCustomDefinition } from './interfaces'; | ||
@@ -8,3 +8,3 @@ export * from './interfaces'; | ||
createWorker<IArrayBufferWorkerCustomDefinition>(self, { | ||
createWorker<IAsyncArrayBufferWorkerCustomDefinition>(self, { | ||
allocate: ({ length }) => { | ||
@@ -11,0 +11,0 @@ const arrayBuffer = allocate(length); |
@@ -1,1 +0,1 @@ | ||
export * from './array-buffer-worker-definition'; | ||
export * from './async-array-buffer-worker-definition'; |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Major refactor
Supply chain riskPackage has recently undergone a major refactor. It may be unstable or indicate significant internal changes. Use caution when updating to versions that include significant changes.
Found 1 instance in 1 package
27753
0