Christoph Bajohr

Results 2 issues of Christoph Bajohr

Fixes issue #74 It fixes the expected behavior of cast.ToInt() with a string prefixed with "0". Before this fix `cast.ToInt("01234")` results into `668` instead of `1234`. Now it converts strings...

When I cast a string with prefixed 0 like "0123" with cast.ToInt("0123"), it results into 83 instead of the expected 123 Example code: ```go package main import ( "fmt" "github.com/spf13/cast"...