Skip to content
This repository was archived by the owner on Sep 6, 2021. It is now read-only.

Commit be8ed6d

Browse files
authored
replaced tabs by 4 spaces indent
1 parent e1fb8d1 commit be8ed6d

File tree

1 file changed

+12
-12
lines changed

1 file changed

+12
-12
lines changed

lib/workers/api_use.js

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -67,19 +67,19 @@ function postProcess(parsedFiles, filenames, preProcess, packageInfos, source, t
6767
parsedFiles.forEach(function(parsedFile, parsedFileIndex) {
6868
parsedFile.forEach(function(block) {
6969
var loopCounter = 0; //add a loop counter to have a break condition when the recursion depth exceed a predifined limit
70-
while (block.local[target]) {
71-
if (loopCounter > 10) {
72-
throw new WorkerError('recursion depth exceeds limit with @apiUse',
73-
filenames[parsedFileIndex],
74-
block.index,
75-
messages.common.element,
76-
messages.common.usage,
77-
messages.common.example,
78-
[
79-
{ 'Groupname': name }
80-
]
70+
while (block.local[target]) {
71+
if (loopCounter > 10) {
72+
throw new WorkerError('recursion depth exceeds limit with @apiUse',
73+
filenames[parsedFileIndex],
74+
block.index,
75+
messages.common.element,
76+
messages.common.usage,
77+
messages.common.example,
78+
[
79+
{ 'Groupname': name }
80+
]
8181
);
82-
}
82+
}
8383

8484
//create a copy of the elements for save iterating of the elements
8585
const blockClone = [...block.local[target]];

0 commit comments

Comments
 (0)