MCPcopy
hub / github.com/ShizukuIchi/pdf-editor / toString

Method toString

public/makeTextPDF.js:58209–58229  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

58207class PDFAbstractReference {
58208 toString() {
58209 throw new Error('Must be implemented by subclasses');
58210 }
58211
58212}
58213
58214/*
58215PDFNameTree - represents a name tree object
58216*/
58217
58218class PDFNameTree {
58219 constructor() {
58220 this._items = {};
58221 }
58222
58223 add(key, val) {
58224 return this._items[key] = val;
58225 }
58226
58227 get(key) {
58228 return this._items[key];
58229 }
58230
58231 toString() {
58232 // Needs to be sorted by key

Callers 15

getNameFunction · 0.45
makeTextPDF.jsFile · 0.45
padFunction · 0.45
checkedFunction · 0.45
toHexFunction · 0.45
InternalCodecFunction · 0.45
convertMethod · 0.45
encodeTextMethod · 0.45
encodeMethod · 0.45
openMethod · 0.45
utf8FillLastFunction · 0.45
utf8TextFunction · 0.45

Calls 1

convertMethod · 0.80

Tested by

no test coverage detected