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

15 lines (12 loc) 386 B
// eslint-disable-next-line node/no-unsupported-features/node-builtins const textDecoder = typeof TextDecoder === 'undefined' ? null : new TextDecoder('utf-8'); function bufferToString(chunk) { if (typeof chunk === 'string') { return chunk; } if (textDecoder) { return textDecoder.decode(chunk); } return chunk.toString(); } exports.bufferToString = bufferToString;