Skip to content

Commit

Permalink
Removed ITF support.
Browse files Browse the repository at this point in the history
  • Loading branch information
lindell committed May 1, 2016
1 parent 4adc581 commit dbb8236
Show file tree
Hide file tree
Showing 5 changed files with 0 additions and 91 deletions.
1 change: 0 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@ Supported barcodes:
* EAN-2
* UPC (A)
* [CODE39](https://github.com/lindell/JsBarcode/wiki/CODE39)
* [ITF](https://github.com/lindell/JsBarcode/wiki/ITF)
* [ITF-14](https://github.com/lindell/JsBarcode/wiki/ITF-14)
* [MSI](https://github.com/lindell/JsBarcode/wiki/MSI)
* MSI10
Expand Down
58 changes: 0 additions & 58 deletions src/barcodes/ITF/index.js

This file was deleted.

2 changes: 0 additions & 2 deletions src/barcodes/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@ import CODE39 from './CODE39/';
import {CODE128, CODE128A, CODE128B, CODE128C} from './CODE128/';
import {EAN13, EAN8, EAN5, EAN2, UPC} from './EAN_UPC/';
import ITF14 from './ITF14/';
import ITF from './ITF/';
import {MSI, MSI10, MSI11, MSI1010, MSI1110} from './MSI/';
import pharmacode from './pharmacode/';
import GenericBarcode from './GenericBarcode/';
Expand All @@ -12,7 +11,6 @@ export default {
CODE128, CODE128A, CODE128B, CODE128C,
EAN13, EAN8, EAN5, EAN2, UPC,
ITF14,
ITF,
MSI, MSI10, MSI11, MSI1010, MSI1110,
pharmacode,
GenericBarcode
Expand Down
1 change: 0 additions & 1 deletion test/browser/tests.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@ function createTests(newTest){
newTest("590123412345", {format: "EAN13", width: 3});
newTest("96385074", {format: "EAN8", width: 1});
newTest("9638507", {format: "EAN8", width: 1});
newTest("12345678", {format: "ITF", width: 1});
newTest("98765432109213", {format: "ITF14", width: 1});
newTest("12345", {format: "pharmacode", width: 1});
newTest("133742", {format: "CODE128C", width: 1});
Expand Down
29 changes: 0 additions & 29 deletions test/node/ITF.test.js

This file was deleted.

0 comments on commit dbb8236

Please sign in to comment.