mirror of
https://github.com/mozilla/pdf.js.git
synced 2025-04-26 10:08:06 +02:00
Ensure that all import
and require
statements, in the entire code-base, have a .js
file extension
In order to eventually get rid of SystemJS and start using native `import`s instead, we'll need to provide "complete" file identifiers since otherwise there'll be MIME type errors when attempting to use `import`.
This commit is contained in:
parent
b833f84307
commit
36881e3770
125 changed files with 453 additions and 443 deletions
|
@ -30,7 +30,7 @@ import {
|
|||
stringToUTF8String,
|
||||
unreachable,
|
||||
warn,
|
||||
} from "../shared/util";
|
||||
} from "../shared/util.js";
|
||||
import {
|
||||
clearPrimitiveCaches,
|
||||
Cmd,
|
||||
|
@ -44,16 +44,16 @@ import {
|
|||
Ref,
|
||||
RefSet,
|
||||
RefSetCache,
|
||||
} from "./primitives";
|
||||
import { Lexer, Parser } from "./parser";
|
||||
} from "./primitives.js";
|
||||
import { Lexer, Parser } from "./parser.js";
|
||||
import {
|
||||
MissingDataException,
|
||||
toRomanNumerals,
|
||||
XRefEntryException,
|
||||
XRefParseException,
|
||||
} from "./core_utils";
|
||||
import { CipherTransformFactory } from "./crypto";
|
||||
import { ColorSpace } from "./colorspace";
|
||||
} from "./core_utils.js";
|
||||
import { CipherTransformFactory } from "./crypto.js";
|
||||
import { ColorSpace } from "./colorspace.js";
|
||||
|
||||
function fetchDestination(dest) {
|
||||
return isDict(dest) ? dest.get("D") : dest;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue