(source, start)
| 1111 | } |
| 1112 | |
| 1113 | function skipBlockComment(source, start) { |
| 1114 | const next = source.indexOf("*/", start + 2); |
| 1115 | return next < 0 ? source.length - 1 : next + 1; |
| 1116 | } |
| 1117 | |
| 1118 | function watchFiles(files, callback) { |
| 1119 | let timer = null; |