Skip to content

Commit 25ff9e7

Browse files
committed
remove unnecessary continue
1 parent 0c737a7 commit 25ff9e7

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

templates/cli/lib/parser.js.twig

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,6 @@ const parse = (data) => {
2626
for (let key in data) {
2727
if (data[key] === null) {
2828
console.log(`${chalk.yellow.bold(key)} : null`);
29-
continue;
3029
} else if (Array.isArray(data[key])) {
3130
console.log(`${chalk.yellow.bold.underline(key)}`);
3231
if (typeof data[key][0] === 'object') {

0 commit comments

Comments
 (0)