Rename brotli sub-files

This commit is contained in:
Kenny Daniel 2025-03-19 22:42:59 -07:00
parent 9a2f3b72d5
commit 498a53c866
No known key found for this signature in database
GPG Key ID: 90AB653A8CAD7E45
6 changed files with 6 additions and 6 deletions

@ -151,7 +151,7 @@ export function buildHuffmanTable(root_table, table, root_bits, code_lengths, co
}
/**
* @typedef {import('./brotliBitReader.js').default} BrotliBitReader
* @typedef {import('./brotli.bitreader.js').default} BrotliBitReader
* @param {number} alphabet_size
* @param {HuffmanCode[]} tables
* @param {number} table

@ -3,12 +3,12 @@
* Copyright 2013 Google Inc, Apache License 2.0
*/
import BrotliBitReader from './brotliBitReader.js'
import BrotliBitReader from './brotli.bitreader.js'
import { lookup, lookupOffsets } from './brotliContext.js'
import { HuffmanCode, readHuffmanCode, readSymbol } from './brotliHuffman.js'
import { kBlockLengthPrefixCode, kCopyLengthPrefixCode, kCopyRangeLut, kInsertLengthPrefixCode, kInsertRangeLut } from './brotliPrefix.js'
import { HuffmanCode, readHuffmanCode, readSymbol } from './brotli.huffman.js'
import { kBlockLengthPrefixCode, kCopyLengthPrefixCode, kCopyRangeLut, kInsertLengthPrefixCode, kInsertRangeLut } from './brotli.prefix.js'
import { BrotliInput, BrotliOutput } from './brotliStreams.js'
import { kNumTransforms, transformDictionaryWord } from './brotliTransform.js'
import { kNumTransforms, transformDictionaryWord } from './brotli.transform.js'
const kNumLiteralCodes = 256
const kNumInsertAndCopyCodes = 704

@ -15,7 +15,7 @@
Transformations on dictionary words.
*/
import { getDictionary } from './brotliDictionary.js'
import { getDictionary } from './brotli.dictionary.js'
const kIdentity = 0
const kOmitLast1 = 1