The following fails for me: ```Julia JSON.parse("1", BigInt) # ERROR: ArgumentError: applyeach not applicable for `JSON.LazyValue{String}` with JSON type = `JSONTypes.NUMBER` ``` Note that it works in JSON3.jl: ```Julia typeof(JSON3.parse("1", BigInt)) # BigInt ```