| Lines of Code | 12 |
| Duplicated Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | import MSI from './MSI.js'; |
||
| 2 | import {mod10, mod11} from './checksums.js'; |
||
| 3 | |||
| 4 | class MSI1110 extends MSI{ |
||
| 5 | constructor(string){ |
||
| 6 | super(string); |
||
| 7 | this.string += mod11(this.string); |
||
| 8 | this.string += mod10(this.string); |
||
| 9 | } |
||
| 10 | } |
||
| 11 | |||
| 12 | export default MSI1110; |
||
| 13 |