Vladimír Gorej
Vladimír Gorej
https://deno.land/
Each function in documentation have example demonstrating the usage of the function. Would be great if could come up with the way how to execute these examples inline and directly...
We're testing on minimum Node.js version of 12.x which already contains all the stuff we need. Needs to be double checked, but IMHO we can get rid of it.
**Is your feature request related to a problem? Please describe.** We want to have our TypeScript typings tested. Library called [dtslit](https://github.com/microsoft/dtslint) from MicroSoft allows us to do it. We maintain...
toNumber
**Is your feature request related to a problem? Please describe.** Converts value to a number. Under the hood we will use Javascripts native [Number](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Number) function and we have to explicitly...
toFinite
**Is your feature request related to a problem? Please describe.** Converts `value` to a finite number. **Describe the solution you'd like** ```js toFinite(3.2); // => 3.2 toFinite(Number.MIN_VALUE); // => 5e-324...
`test:ramda` is consuming a lot of time. This task can be moved to nightly build and checked only once a day. We'll same a lot of time by doing that,...
roundTo
**Is your feature request related to a problem? Please describe.** Round to a certain precision on a number **Describe the solution you'd like** ```js roundTo(2, 11); // outputs 12 roundTo(3,...
**Is your feature request related to a problem? Please describe.** Kleisli reduction support (left nad right). In order for this to work the types being reduced must implement [Chain specification](https://github.com/fantasyland/fantasy-land#chain)....