Bin
2025-12-16 9e0b2ba2c317b1a86212f24cbae3195ad1f3dbfa
1
2
3
4
5
6
7
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);
});