UNPKG

atlas-guide

Version:

Atlas is living style-guides & pattern library static site generator with extensive CSS monitoring and components info that could be used virtually with any scss/css project

20 lines (15 loc) 368 B
'use strict'; function getRuleSets(fileAST) { let ruleSets = []; fileAST.walkRules(rule => { let declarations = 0; rule.nodes.forEach(node => { if (node.type === 'decl') { declarations++; } }); ruleSets.push(declarations); }); return ruleSets; } module.exports = getRuleSets;