UNPKG
falcon-ui
Version:
beta (2.0.1-beta.1)
latest (0.0.17)
next1 (1.0.3)
next2 (2.0.2)
2.0.2
2.0.1
2.0.1-beta.1
2.0.0
1.0.3
1.0.3-beta.2
1.0.3-beta.1
1.0.2
1.0.1
1.0.0
0.1.6
0.1.5
0.1.4
0.1.3
0.1.2
0.1.1
0.1.0
0.0.17
0.0.16
0.0.15-beta9
0.0.15-beta8
0.0.15-beta7
0.0.15-beta6
0.0.15-beta5
0.0.15-beta4
0.0.15-beta3
0.0.15-beta2
0.0.15-beta1
0.0.14
0.0.13
0.0.12
0.0.11
0.0.10
0.0.9-beta1
0.0.8
0.0.7
0.0.6
0.0.5-beta6
0.0.5-beta5
0.0.5-beta4
0.0.5-beta3
0.0.5-beta2
0.0.5-beta1
0.0.4
0.0.3
0.0.2
ui components for falcon
falcon-ui
/
src
/
packages
/
bar-code
/
libs
/
barcodes
/
MSI
/
MSI1110.js
13 lines
(10 loc)
•
230 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
import
MSI from
'./MSI.js'
;
import
{mod10, mod11} from
'./checksums.js'
;
class
MSI1110
extends
MSI
{
constructor
(
data
, options){
data
+= mod11(
data
);
data
+= mod10(
data
);
super
(
data
, options); } } export default MSI1110;