Skip to content

Commit

Permalink
Merge tag 'v0.1.17' of https://github.com/jkulvich/tobin into feature
Browse files Browse the repository at this point in the history
0.1.17
  • Loading branch information
jkulvich committed Jun 9, 2020
2 parents d4eb7ec + 8570f43 commit 7c79da5
Show file tree
Hide file tree
Showing 3 changed files with 31 additions and 31 deletions.
30 changes: 15 additions & 15 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,21 +32,21 @@ Or it can be used as a part of big binary serialization library.

# Supported types

- [x] byte
- [x] sbyte
- [x] int16
- [x] uint16
- [x] int32
- [x] uint32
- [ ] int64 // ES2020 only with BigInt
- [ ] uint64 // ES2020 only with BigInt
- [ ] float
- [ ] double
- [x] bool
- [ ] string
- [x] string // Null Terminated String (default)
- [x] short-string // Short String (255 bytes max)
- [ ] fixed-string // String with fixed size. Null Terminated if less than size
- [x] Byte
- [x] SByte
- [x] Int16
- [x] UInt16
- [x] Int32
- [x] UInt32
- [ ] Int64 // ES2020 only with BigInt
- [ ] UInt64 // ES2020 only with BigInt
- [ ] Float
- [ ] Double
- [x] Bool
- [ ] String
- [x] String // Null Terminated String (default)
- [x] ShortString // Short String (255 bytes max)
- [ ] FixedString // String with fixed size. Null Terminated if less than size

# Examples

Expand Down
30 changes: 15 additions & 15 deletions README.ru.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,21 +33,21 @@

# Поддерживаемые типы

- [x] byte
- [x] sbyte
- [x] int16
- [x] uint16
- [x] int32
- [x] uint32
- [ ] int64 // Только ES2020 с BigInt
- [ ] uint64 // Только ES2020 с BigInt
- [ ] float
- [ ] double
- [x] bool
- [ ] string
- [x] string // Строка завершающаяся null символом (стандартная)
- [x] short-string // Короткая строка (максимум 255 байт)
- [ ] fixed-string // Строка фиксированного размера. Завершается null, если короче размера
- [x] Byte
- [x] SByte
- [x] Int16
- [x] UInt16
- [x] Int32
- [x] UInt32
- [ ] Int64 // Только ES2020 с BigInt
- [ ] UInt64 // Только ES2020 с BigInt
- [ ] Float
- [ ] Double
- [x] Bool
- [ ] String
- [x] String // Строка завершающаяся null символом (стандартная)
- [x] ShortString // Короткая строка (максимум 255 байт)
- [ ] FixedString // Строка фиксированного размера. Завершается null, если короче размера

# Примеры

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "tobin",
"version": "0.1.16",
"version": "0.1.17",
"description": "Library for binary conversion",
"homepage": "https://github.com/jkulvich/tobin",
"license": "MIT",
Expand Down

0 comments on commit 7c79da5

Please sign in to comment.