Н
Size: a a a
Н
Н
ГШ
AH
Н
P
AH
AR
AR
ПЗ
ПЗ
ПЗ
ДО
☻function watchChanges(dir) {
watch(dir)
function watch(dir, lastTimestamp) {
console.log("watch tick")
getTimestampForFilesInDirectory(dir).then(timestamp => {
if (!lastTimestamp || (lastTimestamp === timestamp)) {
setTimeout(() => watch(dir, timestamp), 1000)
} else {
reload()
}
})
}
}
AH
С
AH
С
AH