V8 sometimes deopts functions containing try/catch blocks. Check src/index.ts for any try/catch in parse's code path. If present (likely for format function or number coercion), move outside the hot path. Fingerprint exact. Target: potential 0.5-1ms if V8 was deopting; probably neutral since parse() is simple.
V8 sometimes deopts functions containing try/catch blocks. Check src/index.ts for any try/catch in parse's code path. If present (likely for format function or number coercion), move outside the hot path. Fingerprint exact. Target: potential 0.5-1ms if V8 was deopting; probably neutral since parse() is simple.