unjs / destr

🚀 Faster, secure and convenient alternative for JSON.parse
MIT License
1.03k stars 14 forks source link

perf: avoid lowercasing long strings #80

Closed webstrand closed 11 months ago

webstrand commented 11 months ago

Describe the feature

If the string is longer than nine characters it cannot possibly match any of the hard-coded strings. So wrap the lowercasing operation in a conditional that prevents the operation if the string is ten characters or longer.

Additional information