MCPcopy
hub / github.com/parse-community/parse-server / getText

Method getText

src/request.js:21–28  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

19 }
20
21 const getText = () => {
22 if (!_text && this.buffer) {
23 _text = this.buffer.toString('utf-8');
24 } else if (!_text && _data) {
25 _text = JSON.stringify(_data);
26 }
27 return _text;
28 };
29
30 const getData = () => {
31 if (!_data) {

Callers

nothing calls this directly

Calls 1

toStringMethod · 0.80

Tested by

no test coverage detected