(data)
| 478 | // with data. If that threw an exception, then run errorSteps |
| 479 | // with that exception. |
| 480 | const successSteps = (data) => { |
| 481 | try { |
| 482 | promise.resolve(convertBytesToJSValue(data)) |
| 483 | } catch (e) { |
| 484 | errorSteps(e) |
| 485 | } |
| 486 | } |
| 487 | |
| 488 | // 5. If object’s body is null, then run successSteps with an |
| 489 | // empty byte sequence. |
no outgoing calls
no test coverage detected
searching dependent graphs…