UNPKG

arquero

Version:

Query processing and transformation of array-backed data tables.

11 lines (10 loc) 234 B
/** * @param {string} path * @returns {'gzip' | 'deflate' | null} */ export function compressionType(path) { const ext = path.slice(-3).toLowerCase(); return ext === '.gz' ? 'gzip' : ext === '.zz' ? 'deflate' : null; }