/
alt3rmann
/
label-studio
Обзор
Документация
Войти
/
alt3rmann
/
label-studio
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
develop
docs/scripts/checkIfFileExists.js
7 строк
225 B
Hugues Tennier
docs: Add alerts (#6171)
05 авг 2024, 19:06
Не верифицирован
05 авг 2024, 19:06
3126c06
Код
Авторство
О чём код?
const fs = require('fs'); const path = require('path'); hexo.extend.helper.register('file_exists', function(filePath) { const fullPath = path.join(hexo.theme_dir, 'layout', filePath); return fs.existsSync(fullPath); });