You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix(devins-lang): refactor language injection check #101
Previously, the language injection check was prone to unnecessary re-evaluation due to the use of `||` and `&&`. This commit refactors the code to use `?:` and `?: return` to ensure that the check is performed only once and the function returns as soon as the condition is met, improving the efficiency and readability of the code.
0 commit comments