UNPKG

tcadif

Version:

read and write Amateur Data Interchange Format (ADIF)

16 lines (12 loc) 275 B
'use strict'; const FieldDef = require('./FieldDef'); class QSO_DATE extends FieldDef { constructor() { super({ fieldName: 'QSO_DATE', dataType: 'Date', dataTypeIndicator: 'D', }); } } module.exports = QSO_DATE;