3.0.0 • Published 5 years ago
@supercharge/numbers v3.0.0
Introduction
The @supercharge/numbers package extends JavaScripthttps://developer.mozilla.org/de/docs/Web/JavaScript/Reference/Global_Objects/Numbers Number class to provide additional helper methods when working with numbers, like generating a random number in a given range.
Installation
npm i @supercharge/numbersDocs
Find all the details for @supercharge/numbers in the extensive Supercharge docs.
Usage
Using @supercharge/numbers is pretty straightforward. Use the exposed static methods directly from the imported package:
const Num = require('@supercharge/numbers')
Num.randomInt(0, 10)
// 10
// randomInt returns a number from 0 to 10 (inclusive start and end)
Num.randomIntBetween(0, 10)
// 4
// randomIntBetween returns a number from 1 to 9 (exclusive start and end)Contributing
Do you miss a string function? We very much appreciate your contribution! Please send in a pull request 😊
- Create a fork
- Create your feature branch:
git checkout -b my-feature - Commit your changes:
git commit -am 'Add some feature' - Push to the branch:
git push origin my-new-feature - Submit a pull request 🚀
License
MIT © Supercharge
superchargejs.com · GitHub @superchargejs · Twitter @superchargejs