freeCodeCamp/tools/challenge-md-parser/utils/index.js

7 lines
168 B
JavaScript
Raw Normal View History

exports.sectionFilter = (
{ type, tagName, properties: { id = '' } },
sectionId
) => {
return type === 'element' && tagName === 'section' && id === sectionId;
};