dsherret / dax

Cross-platform shell tools for Deno and Node.js inspired by zx.
MIT License
997 stars 34 forks source link

feat: support providing a delay to `RequestBuilder#timeout` #91

Closed dsherret closed 1 year ago

dsherret commented 1 year ago

Supports providing a string like:

const result = await requestBuilder
  .url("https://example.com")
  .timeout("10s")
  .text();