3.0.1 • Published 3 years ago

moravio-be-coins v3.0.1

Weekly downloads
-
License
MIT
Repository
github
Last release
3 years ago

moravio-be-coins

Moravio - backend task - coins.

https://hackmd.io/3MSmOwe3RV6Zoyzd4JUyOQ

Install

npm install moravio-be-coins

Usage

import { getChange } from 'moravio-be-coins';

getChange(12, [1, 2, 5]); // ✔️  [5, 5, 2]

getChange(12, [1, 4, 5]); // ✔️ [4, 4, 4]

getChange(.3, [.2, .1]); // ✔️ [.2, .1]

getChange(12, [5]); // ❌ -1

Breaking changes from 2.0.0 to 3.0.0

getChange() no longer returns an object but directly the change or -1 if it can't be calculated.

Run tests

npm test

CI / CD with GitHub Actions

Tests are run after every push on any branch.

The package is auto-published on npm after each GitHub release.

Thank you 🙂

I'd be very happy to have your feedback on this.

3.0.1

3 years ago

3.0.0

3 years ago

2.0.0

3 years ago

1.4.3

3 years ago

1.4.2

3 years ago

1.4.1

3 years ago

1.1.2

3 years ago

1.0.1

3 years ago

1.0.0

3 years ago