Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: wrong docs #34

Merged
merged 1 commit into from
Oct 23, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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