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
Except for:
- `sOut`, for backwards compatibility, since it's included in public API
Via VSCode find and replace of:
- patt: `\b[bs](?!File)([A-Z]\w+)(?<!sOut)\b`
with: `\l$1`
- patt: `\b[bs]File([A-Z]\w+)(?<!sOut)\b`
with: `fileName$1`
- patt: `sFile`
with: `fname`
- patt: `\bf([A-Z]\w+)\b`
with: `file$1`
0 commit comments