mirror of
https://github.com/mozilla/pdf.js.git
synced 2025-04-26 10:08:06 +02:00
Move additional worker-thread only functions from src/shared/util.js
and into a src/core/core_utils.js
instead
This moves the `log2`, `readInt8`, `readUint16`, `readUint32`, and `isSpace` functions since they are only used in the worker-thread.
This commit is contained in:
parent
794744c3fa
commit
3f031f69c2
12 changed files with 82 additions and 99 deletions
|
@ -13,14 +13,8 @@
|
|||
* limitations under the License.
|
||||
*/
|
||||
|
||||
import {
|
||||
BaseException,
|
||||
log2,
|
||||
readInt8,
|
||||
readUint16,
|
||||
readUint32,
|
||||
shadow,
|
||||
} from "../shared/util.js";
|
||||
import { BaseException, shadow } from "../shared/util.js";
|
||||
import { log2, readInt8, readUint16, readUint32 } from "./core_utils.js";
|
||||
import { ArithmeticDecoder } from "./arithmetic_decoder.js";
|
||||
import { CCITTFaxDecoder } from "./ccitt.js";
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue