Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/richard-viney/iso_8859
Gleam library to decode ISO/IEC 8859 binary data into native UTF-8 strings.
https://github.com/richard-viney/iso_8859
Last synced: 27 days ago
JSON representation
Gleam library to decode ISO/IEC 8859 binary data into native UTF-8 strings.
- Host: GitHub
- URL: https://github.com/richard-viney/iso_8859
- Owner: richard-viney
- License: mit
- Created: 2024-01-17T22:43:08.000Z (11 months ago)
- Default Branch: main
- Last Pushed: 2024-11-13T07:59:18.000Z (29 days ago)
- Last Synced: 2024-11-13T08:35:57.735Z (29 days ago)
- Language: Gleam
- Homepage:
- Size: 14.6 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
- awesome-gleam - iso_8859 - [📚](https://hexdocs.pm/iso_8859/) - Gleam library to decode ISO/IEC 8859 binary data into native UTF-8 strings. (Packages / Formats)
README
# Gleam ISO/IEC 8859 Decoder
This Gleam library decodes ISO/IEC 8859 binary data into a native string. All 15
ISO/IEC 8859 encodings are supported.See https://en.wikipedia.org/wiki/ISO/IEC_8859 for details on the ISO/IEC 8859
encodings.[![Package Version](https://img.shields.io/hexpm/v/iso_8859)](https://hex.pm/packages/iso_8859)
[![Hex Docs](https://img.shields.io/badge/hex-docs-ffaff3)](https://hexdocs.pm/iso_8859/)
![Erlang Compatible](https://img.shields.io/badge/target-erlang-a90432)
![JavaScript Compatible](https://img.shields.io/badge/target-javascript-f3e155)
[![Semantic Release](https://img.shields.io/badge/semantic--release-conventionalcommits-e10079?logo=semantic-release)](https://github.com/semantic-release/semantic-release)## Usage
To add this library to your Gleam project:
```sh
gleam add iso_8859
```To use it:
```gleam
> iso_8859.decode_bytes(<<0xB4, 0xEC, 0xE0>>, iso_8859.Part5)
"Дьр"
```API documentation can be found at .
## License
This library is published under the MIT license, a copy of which is included.