Skip to content

Commit

Permalink
v2.13.0
Browse files Browse the repository at this point in the history
  • Loading branch information
efureev committed Apr 16, 2020
1 parent c7b2ce6 commit 6cc6103
Show file tree
Hide file tree
Showing 16 changed files with 465 additions and 150 deletions.
12 changes: 11 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,15 @@ and this project adheres to [Semantic Versioning][semver].

## [unreleased]

## [2.13.0] - 2020-04-16

### Added

- A function `bind` to `Core`
- A new group: `Structures`
- A struct `Stack` to `Structures`
- A struct `Queue` to `Structures`

## [2.12.0] - 2020-04-05

### Added
Expand Down Expand Up @@ -80,7 +89,8 @@ and this project adheres to [Semantic Versioning][semver].
- A function `difference` to Array
- A function `symmetricalDifference` to Array

[unreleased]: https://github.com/efureev/mu/compare/v2.12.0...HEAD
[unreleased]: https://github.com/efureev/mu/compare/v2.13.0...HEAD
[2.12.0]: https://github.com/efureev/mu/compare/v2.12.0...v2.13.0
[2.11.0]: https://github.com/efureev/mu/compare/v2.11.0...v2.12.0
[2.11.0]: https://github.com/efureev/mu/compare/v2.10.0...v2.11.0
[2.10.0]: https://github.com/efureev/mu/compare/v2.9.0...v2.10.0
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@
![](https://badgen.net/npm/dt/@feugene/mu)



# µ
JS Utilities Framework without dependencies.

Expand All @@ -36,3 +35,4 @@ JS Utilities Framework without dependencies.
- String helpers
- Date helpers
- Format helpers
- Structures
8 changes: 7 additions & 1 deletion docs/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
```json
{
"dependencies": {
"@feugene/mu": "^2.12"
"@feugene/mu": "^2.13"
}
}
```
Expand All @@ -22,6 +22,7 @@ jest
- [Date](#date)
- [Format](#format)
- [To](#to)
- [Structures](#structures)

## Core
Function | Return | Description
Expand Down Expand Up @@ -124,3 +125,8 @@ fileSize | string | Display number as file size | `fileSize(7900221323) // '7.36
intWord | string | | `intWord(21323) // '21.32K'`
padNumber | string | | `padNumber(2,3) // '002'`
padDateTime | string | | `padDateTime(1) // '01'`

## Structures

- Stack
- Queue
8 changes: 7 additions & 1 deletion docs/en-us/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
```json
{
"dependencies": {
"@feugene/mu": "^2.12"
"@feugene/mu": "^2.13"
}
}
```
Expand All @@ -22,6 +22,7 @@ jest
- [Date](#date)
- [Format](#format)
- [To](#to)
- [Structures](#structures)

## Core
Function | Return | Description
Expand Down Expand Up @@ -124,3 +125,8 @@ fileSize | string | Display number as file size | `fileSize(7900221323) // '7.36
intWord | string | | `intWord(21323) // '21.32K'`
padNumber | string | | `padNumber(2,3) // '002'`
padDateTime | string | | `padDateTime(1) // '01'`

## Structures

- Stack
- Queue
8 changes: 7 additions & 1 deletion docs/ru/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
```json
{
"dependencies": {
"@feugene/mu": "^2.12"
"@feugene/mu": "^2.13"
}
}
```
Expand All @@ -22,6 +22,7 @@ jest
- [Date](#date)
- [Format](#format)
- [To](#to)
- [Structures](#structures)

## Core
Function | Return | Description
Expand Down Expand Up @@ -124,3 +125,8 @@ fileSize | string | Форматирование числа как размер
intWord | string | | `intWord(21323) // '21.32K'`
padNumber | string | | `padNumber(2,3) // '002'`
padDateTime | string | | `padDateTime(1) // '01'`

## Structures

- Stack
- Queue
Loading

0 comments on commit 6cc6103

Please sign in to comment.