@lppedd/kotlinx-charset 0.1.5 → 0.1.7

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 CHANGED
@@ -5,9 +5,9 @@
5
5
 
6
6
  [![maven central](https://img.shields.io/maven-central/v/com.lppedd.kotlinx-charset/core)](https://mvnrepository.com/artifact/com.lppedd.kotlinx-charset)
7
7
  [![npm](https://img.shields.io/npm/v/%40lppedd%2Fkotlinx-charset?color=%23de1f1f&logo=npm)](https://www.npmjs.com/package/@lppedd/kotlinx-charset)
8
- [![kotlin](https://img.shields.io/badge/kotlin-2.2.20-blue.svg?logo=kotlin)](https://kotlinlang.org)
8
+ [![kotlin](https://img.shields.io/badge/kotlin-2.2.21-blue.svg?logo=kotlin)](https://kotlinlang.org)
9
9
  [![build](https://img.shields.io/github/actions/workflow/status/lppedd/kotlinx-charset/build.yml.svg?branch=master)](https://github.com/lppedd/kotlinx-charset/actions/workflows/build.yml)
10
- [![license](https://img.shields.io/github/license/lppedd/kotlinx-charset?color=blue)](./LICENSE)
10
+ [![license](https://img.shields.io/github/license/lppedd/kotlinx-charset?color=F7F7F7)](./LICENSE)
11
11
 
12
12
  </div>
13
13
 
@@ -54,10 +54,12 @@ val encoder = charset.newEncoder()
54
54
  The `ebcdic` module adds support for:
55
55
 
56
56
  ```text
57
- IBM037 IBM930 IBM1143
58
- IBM273 IBM939 IBM1147
59
- IBM278 IBM1047 IBM1390
60
- IBM297 IBM1141 IBM1399
57
+ IBM037 IBM930 IBM1144
58
+ IBM273 IBM937 IBM1146
59
+ IBM278 IBM939 IBM1147
60
+ IBM280 IBM1047 IBM1390
61
+ IBM285 IBM1141 IBM1399
62
+ IBM297 IBM1143
61
63
  ```
62
64
 
63
65
  You can register supported EBCDIC charsets to your `XCharsetRegistrar`
@@ -74,10 +76,10 @@ provideEbcdicCharsets(registrar)
74
76
 
75
77
  ## exported
76
78
 
77
- The `exported` module allows JS (and soon WebAssembly) consumers to decode bytes
78
- and encode strings, using top-level functions exported via ECMAScript modules.
79
+ The `exported` module allows JS consumers to decode bytes and encode strings,
80
+ using top-level functions exported from ECMAScript modules.
79
81
 
80
- > [!TIP]
82
+ > [!TIP]
81
83
  > Avoid using this module when consuming `kotlinx-charset` from a Kotlin project
82
84
 
83
85
  You can depend on the [@lppedd/kotlinx-charset][npm] npm package.