Number utilities for Node.js and JavaScript
Installation · Docs · Usage
Follow @marcuspoehls and @superchargejs for updates!
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.
npm i @supercharge/numbers
Find all the details for @supercharge/numbers
in the extensive Supercharge docs.
Using @supercharge/numbers
is pretty straightforward. Use the exposed static methods directly from the imported package:
const Num = require('@supercharge/numbers')
Num.randomIntWithin(0, 10)
// 10
// returns a number from 0 to 10 (inclusive start and end)
Num.randomIntBetween(0, 10)
// 4
// returns a number from 1 to 9 (exclusive start and end)
Num(10).isInRange(0, 10)
// true (min and max are inclusive)
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 🚀
MIT © Supercharge
superchargejs.com · GitHub @supercharge · Twitter @superchargejs