From 76d435f356c5ca1446eddb064a8ffd3d6ec1a7ee Mon Sep 17 00:00:00 2001 From: guy-borderless <100129659+guy-borderless@users.noreply.github.com> Date: Sat, 8 Apr 2023 18:11:02 +0300 Subject: [PATCH 1/2] importing index.ts in readme.md example for deno I think it's better to use the more idiomatic index.ts export from https://deno.land --- readme.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/readme.md b/readme.md index e806a274..eec2c0a7 100644 --- a/readme.md +++ b/readme.md @@ -110,7 +110,7 @@ console.log(json); If you are using [Deno](https://github.com/denoland/deno), import Ky from a URL. For example, using a CDN: ```js -import ky from 'https://esm.sh/ky'; +import ky from "https://deno.land/x/ky/source/index.ts"; ``` ## API From c43cee30e242a9209a322a8212b4879f3dfcc5f3 Mon Sep 17 00:00:00 2001 From: guy-borderless <100129659+guy-borderless@users.noreply.github.com> Date: Sun, 9 Apr 2023 13:35:21 +0300 Subject: [PATCH 2/2] Update readme.md single quotes --- readme.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/readme.md b/readme.md index eec2c0a7..f350a631 100644 --- a/readme.md +++ b/readme.md @@ -110,7 +110,7 @@ console.log(json); If you are using [Deno](https://github.com/denoland/deno), import Ky from a URL. For example, using a CDN: ```js -import ky from "https://deno.land/x/ky/source/index.ts"; +import ky from 'https://deno.land/x/ky/source/index.ts'; ``` ## API