We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Is your feature request related to a problem? Please describe. Converts value to an integer.
Describe the solution you'd like
toInteger(3.2); // => 3 toInteger(Number.MIN_VALUE); // => 0 toInteger(Infinity); //=> 1.7976931348623157e+308 toInteger('3.2'); // => 3
Possible implementation
const toInteger = curry1(val => { const finite = toFinite(val); const remainder = modulo(val, 1); return finite !== finite ? 0 : remainder !== 0 ? finite - remainder : finite; });
Additional context
blocked by toFinite
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Is your feature request related to a problem? Please describe.
Converts value to an integer.
Describe the solution you'd like
Possible implementation
Describe alternatives you've considered
Additional context
blocked by toFinite
The text was updated successfully, but these errors were encountered: