diff --git a/Boop/Boop/scripts/StartCase.js b/Boop/Boop/scripts/StartCase.js index 52904ca6..a2ffbf36 100644 --- a/Boop/Boop/scripts/StartCase.js +++ b/Boop/Boop/scripts/StartCase.js @@ -9,10 +9,8 @@ } **/ -const { startCase } = require('@boop/lodash.boop') +const { startCase, lowerCase } = require("@boop/lodash.boop"); function main(input) { - - input.text = startCase(input.text) - + input.text = startCase(lowerCase(input.text)); }