File tree Expand file tree Collapse file tree 1 file changed +14
-14
lines changed Expand file tree Collapse file tree 1 file changed +14
-14
lines changed Original file line number Diff line number Diff line change @@ -61,24 +61,12 @@ in your code:
61
61
* or, you can also use import maps
62
62
* https://docs.deno.com/runtime/manual/basics/import_maps
63
63
*/
64
- import { ... } from ' https://esm.sh/@intlify/utils '
64
+ import { ... } from ' https://deno.land/x/intlify_utils/mod.ts '
65
65
66
66
// something todo
67
67
// ...
68
68
```
69
69
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
-
82
70
### 🥟 Bun
83
71
84
72
``` sh
@@ -95,13 +83,25 @@ in your HTML:
95
83
* you can install via other CDN URL such as skypack,
96
84
* or, you can also use import maps
97
85
*/
98
- import { isLocale } from ' https://deno.land/x/intlify_utils/mod.ts '
86
+ import { isLocale } from ' https://esm.sh/@intlify/utils '
99
87
100
88
// something todo
101
89
// ...
102
90
</script >
103
91
```
104
92
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
+
105
105
## 🍭 Playground
106
106
107
107
You can play the below examples:
You can’t perform that action at this time.
0 commit comments