UNPKG
x12
Version:
latest (1.0.4)
1.0.4
1.0.3
1.0.2
1.0.1
1.0.0
1.0.0-beta.4
1.0.0-beta.3
1.0.0-beta.2
1.0.0-beta.1
0.1.0-alpha.5
0.1.0-alpha.4
0.1.0-alpha.3
0.1.0-alpha.2
0.1.0-alpha.1
A simple ASC X12 parser for NodeJS.
github.com/TrueCommerce/node-x12
TrueCommerce/node-x12
x12
/
src
/
X12Element.ts
14 lines
(11 loc)
•
265 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
'use strict'
;
import
{
Range
}
from
'./Positioning'
;
import
{ X12Segment }
from
'./X12Segment'
;
export
class
X12Element
{
constructor
(
) {
this
.
range
=
new
Range
();
this
.
value
=
''
; }
range
:
Range
;
value
:
string
; }