Skip to content

Commit e583aab

Browse files
committedMay 28, 2019
chore(style): fixed the indentation
fix the indentation
1 parent fc9e259 commit e583aab

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎packages/generators/utils/plugins.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ export const replaceAt = (str: string, index: number, replace: string) : string
4343
export const generatePluginName = (rawPluginName: string): string => {
4444
let myPluginNameArray : string[];
4545
myPluginNameArray = rawPluginName.split("-");
46-
if( myPluginNameArray.length <= 1 ){}
46+
if(myPluginNameArray.length <= 1){}
4747
else{
4848
for (let i = 0; i < myPluginNameArray.length; i++) {
4949
myPluginNameArray[i] = replaceAt(myPluginNameArray[i], 0, myPluginNameArray[i].charAt(0).toUpperCase());

0 commit comments

Comments
 (0)
Please sign in to comment.