* Checks if the file has been changed * @param {EditorFile[]} files List of files to check
(files)
| 33 | * @param {EditorFile[]} files List of files to check |
| 34 | */ |
| 35 | async function recursiveFileCheck(files) { |
| 36 | const file = files.pop(); |
| 37 | await checkFile(file); |
| 38 | if (files.length) { |
| 39 | recursiveFileCheck(files); |
| 40 | } |
| 41 | return; |
| 42 | } |
| 43 | |
| 44 | /** |
| 45 | * @typedef {import('./editorFile').default} EditorFile |
no test coverage detected