Skip to content

Commit

Permalink
fix: wrong docs (#34)
Browse files Browse the repository at this point in the history
  • Loading branch information
kazupon authored Oct 23, 2023
1 parent 39bbfc6 commit 68dcb0d
Showing 1 changed file with 14 additions and 14 deletions.
28 changes: 14 additions & 14 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -61,24 +61,12 @@ in your code:
* or, you can also use import maps
* https://docs.deno.com/runtime/manual/basics/import_maps
*/
import { ... } from 'https://esm.sh/@intlify/utils'
import { ... } from 'https://deno.land/x/intlify_utils/mod.ts'

// something todo
// ...
```

<details>
<summary>Using Edge Releases</summary>

```ts
import { ... } from 'https://esm.sh/@intlify/utils-edge'

// something todo
// ...
```

</details>

### 🥟 Bun

```sh
Expand All @@ -95,13 +83,25 @@ in your HTML:
* you can install via other CDN URL such as skypack,
* or, you can also use import maps
*/
import { isLocale } from 'https://deno.land/x/intlify_utils/mod.ts'
import { isLocale } from 'https://esm.sh/@intlify/utils'
// something todo
// ...
</script>
```

<details>
<summary>Using Edge Releases</summary>

```ts
import { isLocale } from 'https://esm.sh/@intlify/utils-edge'

// something todo
// ...
```

</details>

## 🍭 Playground

You can play the below examples:
Expand Down

0 comments on commit 68dcb0d

Please sign in to comment.