jassub 2.0.1 → 2.0.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +9 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -22,6 +22,15 @@ JASSUB is a JS wrapper for <a href="https://github.com/libass/libass">libass</a>
|
|
|
22
22
|
|
|
23
23
|
## Usage
|
|
24
24
|
|
|
25
|
+
```json
|
|
26
|
+
{
|
|
27
|
+
"Cross-Origin-Embedder-Policy": "require-corp",
|
|
28
|
+
"Cross-Origin-Opener-Policy": "same-origin"
|
|
29
|
+
}
|
|
30
|
+
```
|
|
31
|
+
|
|
32
|
+
Headers are required to use this library, as it uses SharedArrayBuffer for multi-threading!!!
|
|
33
|
+
|
|
25
34
|
```shell
|
|
26
35
|
[p]npm i jassub
|
|
27
36
|
```
|