Skips number characters, a.k.a. any one of 1,2,3,4,5,6,7,8,9
chompBase10(2, "aaaaaaaaaa1928a") // => 2chompBase10(10, "aaaaaaaaaa1928a") // => 14
the new offset after "removing" all base 10 numbers
the offset to start looking from
the source string
Skips number characters, a.k.a. any one of 1,2,3,4,5,6,7,8,9
Example
Returns
the new offset after "removing" all base 10 numbers