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
According to the Google TypeScript Style Guide, Type identifiers should be in UpperCamelCase. Unless someone points out a difference, I'll settle for PascalCase.
PascalCase is implemented as an option on the camelCase(name) function: camelCase(name, {pascalCase: true});
Since other options are possible, I'll implement this with a new camelCaseOptions option, which can be an object or null. The value of this option will be passed in to the camelCase(name,options) call without evaluation. I'll try to ensure that the Options match type Options from camelcase>index.d.ts>Options.
The text was updated successfully, but these errors were encountered:
According to the Google TypeScript Style Guide, Type identifiers should be in UpperCamelCase. Unless someone points out a difference, I'll settle for PascalCase.
PascalCase is implemented as an option on the
camelCase(name)
function:camelCase(name, {pascalCase: true});
Since other options are possible, I'll implement this with a new camelCaseOptions option, which can be an object or null. The value of this option will be passed in to the
camelCase(name,options)
call without evaluation. I'll try to ensure that the Options match type Options from camelcase>index.d.ts>Options.The text was updated successfully, but these errors were encountered: