Skip to content

Commit

Permalink
Remove typo in RED.utils
Browse files Browse the repository at this point in the history
  • Loading branch information
knolleary committed Jan 17, 2021
1 parent ca7e877 commit 1392003
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Expand Up @@ -696,7 +696,7 @@ RED.utils = (function() {
if (str[j] === '[') {
depth++;
} else if (str[j] === ']') {
depth--;''
depth--;
}
if (depth === 0) {
try {
Expand Down
2 changes: 1 addition & 1 deletion packages/node_modules/@node-red/util/lib/util.js
Expand Up @@ -274,7 +274,7 @@ function normalisePropertyExpression(str, msg, toString) {
if (str[j] === '[') {
depth++;
} else if (str[j] === ']') {
depth--;''
depth--;
}
if (depth === 0) {
try {
Expand Down

0 comments on commit 1392003

Please sign in to comment.