MCPcopy
hub / github.com/BlueWallet/BlueWallet / text

Method text

util/expo-fetch.js:155–163  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

153 }
154
155 async text() {
156 if (this._text != null) return this._text;
157 const dec = new TextDecoder();
158 let t = '';
159 for await (const c of this.body) t += dec.decode(c, { stream: true });
160 t += dec.decode();
161 this._text = t;
162 return t;
163 }
164
165 json() {
166 return this.text().then(JSON.parse);

Callers 14

jsonMethod · 0.95
createInvoiceFunction · 0.45
waitForTextFunction · 0.45
helperImportWalletFunction · 0.45
helperDeleteWalletFunction · 0.45
tapIfTextPresentFunction · 0.45
confirmPasswordDialogFunction · 0.45
goBackFunction · 0.45
bluewallet.spec.jsFile · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected