Skip to content

Commit c9d557b

Browse files
committed
Small bugfix: missing semicolon causing issue in strict mode
1 parent 101a7c0 commit c9d557b

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "lingua-recorder",
3-
"version": "2.0.0",
3+
"version": "2.0.1",
44
"description": "A JavaScript library for easy and efficient voice recording tasks.",
55
"files": [
66
"src"

src/LinguaRecorder.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ const STATE = {
66
listening: 'listen',
77
recording: 'record',
88
paused: 'pause',
9-
}
9+
};
1010

1111

1212
/**

src/RecordingProcessor.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ function recordingProcessorEncapsulation() {
99
listening: 'listen',
1010
recording: 'record',
1111
paused: 'pause',
12-
}
12+
};
1313

1414

1515
/**

0 commit comments

Comments
 (0)