| Package |
Type |
Description |
| npm-complex |
number |
Module for elementary operations on the complex plane |
| high-precision-four-fundamental-rules |
number |
a npm packge of high-precision-four-fundamental-rules, which can make up for the defect of accuracy of native JS. |
| nmbrs |
number |
An npm module to prettify numbers |
| prime-nummers |
number |
An multi-language NPM package to use prime numbers. Een meer-talige NPM package om primaire nummers te gebruiken. |
| npm-oddeven |
number |
Method that allows you to play even or odd |
| ordinal-spanish |
number |
Spanish ordinal numbers following a numeral. |
RANDOM
help needed
- fromWords with plural
- fromRoman with decimal
- toWords(opt=ordinal/cardinal)
- toOrdinal
- math.perm(n, k)
- math.dist()
- math.tau
- math: separate statistics?
// Ideas from "iterable"
function mirroredConstrain(x: number, min: number, max: number): number {
return x>=min? Math.min(x, max) : Math.min(x-min+max, min);
}
RANDOM
help needed