We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fa82f73 commit b5e2c0bCopy full SHA for b5e2c0b
src/bin/hsm.ts
@@ -665,7 +665,7 @@ switch (commands[0]) {
665
const keyParts = key.split(`.`)
666
667
const pathName = keyParts
668
- .map(name => /^[A-Za-z_$][\w$]*$/.test(name) ? name : JSON.stringify(name))
+ .map(name => /^[a-z_$][\w$]*$/i.test(name) ? name : JSON.stringify(name))
669
.join(`.`)
670
671
const lastKey = keyParts.pop()!
@@ -689,7 +689,7 @@ switch (commands[0]) {
689
const keys = key.split(`.`)
690
691
const pathName = keys
692
693
694
695
if (!value) {
0 commit comments