freeCodeCamp/curriculum/test/utils/extract-css-comments.js

13 lines
287 B
JavaScript

var rehype = require('rehype');
var vfile = require('vfile');
var getComments = require('./plugins/get-css-comments');
const processor = rehype().use(getComments);
function extractComments(html) {
return processor.processSync(vfile(html)).data;
}
module.exports = extractComments;