We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e5748cc commit 48e72b6Copy full SHA for 48e72b6
README.md
@@ -62,11 +62,11 @@ npm install rtp.js
62
- Single entry point ("main" or "module" entries in `package.json`) is also possible for backwards compatibility:
63
64
```ts
65
- // ESM
+ // Using ESM:
66
import { packets, utils } from 'rtp.js';
67
68
- // CJS
69
- const { packets, utils } = require('rtp.js'=;
+ // Using CJS:
+ const { packets, utils } = require('rtp.js');
70
```
71
72
## Note about TypeScript
0 commit comments