UNPKG

@cantoo/pdf-lib

Version:

Create and modify PDF files with JavaScript

9 lines 374 B
import CharCodes from './CharCodes.js'; import { IsDelimiter } from './Delimiters.js'; import { IsWhitespace } from './Whitespace.js'; export const IsIrregular = new Uint8Array(256); for (let idx = 0, len = 256; idx < len; idx++) { IsIrregular[idx] = IsWhitespace[idx] || IsDelimiter[idx] ? 1 : 0; } IsIrregular[CharCodes.Hash] = 1; //# sourceMappingURL=Irregular.js.map