Skip to content

Commit 57eef13

Browse files
authored
fix: lower and uppercase helpers are no longer flipped
Merge pull request #483 from plopjs/fix-flipped-upper-lower
2 parents 4635ce8 + 2c410ae commit 57eef13

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/node-plop/src/baked-in-helpers.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@ export default {
1515
snakeCase: snakeCase,
1616
dotCase: dotCase,
1717
pathCase: pathCase,
18-
lowerCase: (str) => str.toUpperCase(),
19-
upperCase: (str) => str.toLowerCase(),
18+
lowerCase: (str) => str.toLowerCase(),
19+
upperCase: (str) => str.toUpperCase(),
2020
sentenceCase: sentenceCase,
2121
constantCase: constantCase,
2222
titleCase: titleCase,

0 commit comments

Comments
 (0)