Skip to content

Commit 8bf0b67

Browse files
committed
Remove outdated guides for Deno
1 parent 27b13c2 commit 8bf0b67

File tree

1 file changed

+0
-21
lines changed

1 file changed

+0
-21
lines changed

README.md

Lines changed: 0 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -35,27 +35,6 @@ Version 5 is a hybrid package; it provides both a CommonJS version and an ES Mod
3535

3636
🚨 The API style has changed drastically in version 5. The new API is slightly more verbose, but is simpler and tree-shakable 🌲. For example, if you don't use the default parser, your bundle will not include it. See the [CHANGELOG](./CHANGELOG.md) and the [docs for version 4](https://github.com/smikitky/node-multi-integer-range/tree/v4.0.9).
3737

38-
<details>
39-
<summary>Deno & Modern Browsers</summary>
40-
Deno users can use Skypack CDN:
41-
42-
```ts
43-
import * as mr from 'https://cdn.skypack.dev/multi-integer-range?dts';
44-
```
45-
46-
Although not recommended from a performance standpoint, modern browsers can directly load this package as a standard ES module via CDN:
47-
48-
```html
49-
<script type="module">
50-
import * as mr from 'https://cdn.skypack.dev/multi-integer-range';
51-
console.log(mr.parse('7,6,5'));
52-
</script>
53-
```
54-
55-
Note that you probably want to fixate the version, e.g., multi-integer-range@5.0.3
56-
57-
</details>
58-
5938
## Basic Example
6039

6140
<!-- prettier-ignore -->

0 commit comments

Comments
 (0)