UNPKG

datamodel

Version:

Relational algebra compliant in-memory tabular data store

18 lines (14 loc) 276 B
/** * Interface for all data converters */ export default class DataConverter { constructor(type) { this._type = type; } get type() { return this._type; } convert() { throw new Error('Convert method not implemented.'); } }