Skip to content
This repository was archived by the owner on Jan 14, 2022. It is now read-only.

Commit dd360a3

Browse files
committed
Merge pull request #8 from vjrantal/fix-6
Fallback to name starting with lower case letter.
2 parents fac54be + bb78bac commit dd360a3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/utils.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ function sanitizeName (name) {
6767
while (currentLength > sanitizedName.length);
6868

6969
if (sanitizedName.length === 0) {
70-
sanitizedName = 'MyManifoldJSApp';
70+
sanitizedName = 'myManifoldJSApp';
7171
}
7272

7373
return sanitizedName;

0 commit comments

Comments
 (0)