| 4920 | * @since 3.11.0 |
| 4921 | */ |
| 4922 | export class URLFromSelf extends instanceOf(URL, { |
| 4923 | typeConstructor: { _tag: "URL" }, |
| 4924 | identifier: "URLFromSelf", |
| 4925 | arbitrary: (): LazyArbitrary<URL> => (fc) => fc.webUrl().map((s) => new URL(s)), |
| 4926 | pretty: () => (url) => url.toString() |
| 4927 | }) {} |
| 4928 | |
| 4929 | /** @ignore */ |
| 4930 | class URL$ extends transformOrFail( |
nothing calls this directly
no test coverage detected