import { type IsPosNum } from "https://deno.land/x/rimbu@0.13.5/typical/strnum.ts";
Returns true if the given string is a valid positive integer, false otherwise.
Examples
Example 1
Example 1
IsPosNum<5> => true
IsPosNum<0> => false
IsPosNum<-5> => false