(value)
| 468 | return this[kPath]; |
| 469 | }, |
| 470 | set(value) { |
| 471 | const path = String(value); |
| 472 | if (INVALID_PATH_REGEX.test(path)) { |
| 473 | throw new ERR_UNESCAPED_CHARACTERS('Request path'); |
| 474 | } |
| 475 | this[kPath] = path; |
| 476 | }, |
| 477 | configurable: true, |
| 478 | enumerable: true, |
| 479 | }); |