middleout.js
Version:
A spoof compression library that pretends to revolutionize data compression using made-up algorithms — inspired by the legendary middle-out compression from Silicon Valley
7 lines (6 loc) • 357 B
TypeScript
export { compressWithRLE, decompressWithRLE } from './rle.js';
export { compressWithSTK, decompressWithSTK } from './stk.js';
export { compressWithTNT, decompressWithTNT } from './tnt.js';
export { compressWithZPH, decompressWithZPH } from './zph.js';
export { compressWithMiddleOut, decompressWithMiddleOut } from './mo.js';
import '../../types/index.js';