UNPKG

@csound/browser

Version:

[![npm (scoped with tag)](https://shields.shivering-isles.com/npm/v/@csound/browser/latest)](https://www.npmjs.com/package/@csound/browser) [![GitHub Workflow Status](https://shields.shivering-isles.com/github/workflow/status/csound/csound/csound_wasm)](h

14 lines (12 loc) 291 B
/** * @fileoverview Zlib namespace. Zlib の仕様に準拠した圧縮は Deflate で実装 * されている. これは Inflate との共存を考慮している為. */ /** * Compression Method * @enum {number} */ export const CompressionMethod = { DEFLATE: 8, RESERVED: 15, };