(input, err)
| 265 | } |
| 266 | |
| 267 | function throwSerializationError(input, err) { |
| 268 | const error = new ERR_INVALID_STATE( |
| 269 | 'The provided serializers did not generate a string.', |
| 270 | ); |
| 271 | error.input = input; |
| 272 | error.cause = err; |
| 273 | throw error; |
| 274 | } |
| 275 | |
| 276 | function serializeValue(value, serializers) { |
| 277 | let v = value; |
no outgoing calls
no test coverage detected