Files
doormile-site/find_empty_fonts.js
2026-04-17 12:47:41 +05:30

17 lines
495 B
JavaScript

const fs = require('fs');
const content = fs.readFileSync('c:/xampp/htdocs/doormileweb/assets/css/theme.css', 'utf8');
const fontFaceRegex = /@font-face\s*{([^}]*)}/g;
let match;
let count = 0;
while ((match = fontFaceRegex.exec(content)) !== null) {
const block = match[1];
if (!block.includes('src:')) {
console.log(`Found @font-face without src at index ${match.index}`);
console.log(match[0]);
}
count++;
}
console.log(`Total @font-face blocks: ${count}`);