Skip to content

Commit 33390f2

Browse files
authored
Bug fix: '+' issue
The code for '+' is 'NarrowBar-NarrowSpace-WideBar-NarrowSpace-WideBar-NarrowSpace-WideBar'. So the corresponding sequence should be '1011011011', but it was '101100110011'.
1 parent 111fba7 commit 33390f2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/barcodes/codabar/index.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ class codabar extends Barcode{
5151
":": "1101011011",
5252
"/": "1101101011",
5353
".": "1101101101",
54-
"+": "101100110011",
54+
"+": "1011011011",
5555
"A": "1011001001",
5656
"B": "1001001011",
5757
"C": "1010010011",

0 commit comments

Comments
 (0)