Skip to content

Commit 68dcb0d

Browse files
authored
fix: wrong docs (#34)
1 parent 39bbfc6 commit 68dcb0d

File tree

1 file changed

+14
-14
lines changed

1 file changed

+14
-14
lines changed

README.md

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -61,24 +61,12 @@ in your code:
6161
* or, you can also use import maps
6262
* https://docs.deno.com/runtime/manual/basics/import_maps
6363
*/
64-
import { ... } from 'https://esm.sh/@intlify/utils'
64+
import { ... } from 'https://deno.land/x/intlify_utils/mod.ts'
6565

6666
// something todo
6767
// ...
6868
```
6969

70-
<details>
71-
<summary>Using Edge Releases</summary>
72-
73-
```ts
74-
import { ... } from 'https://esm.sh/@intlify/utils-edge'
75-
76-
// something todo
77-
// ...
78-
```
79-
80-
</details>
81-
8270
### 🥟 Bun
8371

8472
```sh
@@ -95,13 +83,25 @@ in your HTML:
9583
* you can install via other CDN URL such as skypack,
9684
* or, you can also use import maps
9785
*/
98-
import { isLocale } from 'https://deno.land/x/intlify_utils/mod.ts'
86+
import { isLocale } from 'https://esm.sh/@intlify/utils'
9987
10088
// something todo
10189
// ...
10290
</script>
10391
```
10492

93+
<details>
94+
<summary>Using Edge Releases</summary>
95+
96+
```ts
97+
import { isLocale } from 'https://esm.sh/@intlify/utils-edge'
98+
99+
// something todo
100+
// ...
101+
```
102+
103+
</details>
104+
105105
## 🍭 Playground
106106

107107
You can play the below examples:

0 commit comments

Comments
 (0)