Converts a integer number to a exact Integer using parseInt (ie not 12.001 but 12.00 is allowed)
const number_to_test_int = 22.000 numericToInteger<typeof number_to_test_int, true>(number_to_test_int) => 22 Copy
const number_to_test_int = 22.000 numericToInteger<typeof number_to_test_int, true>(number_to_test_int) => 22
Converts a integer number to a exact Integer using parseInt (ie not 12.001 but 12.00 is allowed)