epc-tds-ts
Version:
EPC Tag Data Standard encoding and decoding library, written in javascript for Node.js
15 lines (14 loc) • 404 B
JavaScript
;
/*
* EPC Tag Data Standard
* 2021 Sergio S.
*/
var Segment = require('./segment').Segment;
var Partition = /** @class */ (function () {
function Partition(offset, bits1, digits1, bits2, digits2) {
this.a = new Segment(offset, bits1, digits1);
this.b = new Segment(this.a.end, bits2, digits2);
}
return Partition;
}());
module.exports = { Partition: Partition };