UNPKG

datapilot-cli

Version:

Enterprise-grade streaming multi-format data analysis with comprehensive statistical insights and intelligent relationship detection - supports CSV, JSON, Excel, TSV, Parquet - memory-efficient, cross-platform

17 lines (15 loc) 311 B
'use strict'; const XLSX = require('../xlsx/xlsx'); class ModelContainer { constructor(model) { this.model = model; } get xlsx() { if (!this._xlsx) { this._xlsx = new XLSX(this); } return this._xlsx; } } module.exports = ModelContainer; //# sourceMappingURL=modelcontainer.js.map