Skip to content

Commit cd913f2

Browse files
committed
Prepare 0.1.4 release
1 parent f3d7cf2 commit cd913f2

File tree

5 files changed

+7
-4
lines changed

5 files changed

+7
-4
lines changed

CHANGELOG

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
iframe-worker-0.1.4 (2020-03-04)
2+
3+
* Fixed arrow function in polyfill runtime
4+
15
iframe-worker-0.1.3 (2020-03-02)
26

37
* Fixed polyfill runtime initialization

package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "iframe-worker",
3-
"version": "0.1.3",
3+
"version": "0.1.4",
44
"description": "A tiny WebWorker polyfill for the file:// protocol",
55
"keywords": [
66
"webworker",

src/polyfill/index.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,6 @@ declare global {
3636
* Polyfill
3737
* ------------------------------------------------------------------------- */
3838

39-
/* istanbul ignore next */
4039
window.IFrameWorker = IFrameWorker
4140
if (location.protocol === "file:")
4241
window.Worker = IFrameWorker

src/worker/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ export class IFrameWorker implements Worker {
5959
public onmessage: Worker["onmessage"] = null
6060

6161
/**
62-
* The iframe we'll use to simulate a worker
62+
* The `iframe` we'll use to simulate a worker
6363
*/
6464
public iframe: HTMLIFrameElement
6565

0 commit comments

Comments
 (0)