@passmarked/css
Version:
Rules related to checking the compatability of the CSS on the page ensuring the stylesheet works on older browsers too
15 lines (10 loc) • 299 B
JavaScript
// get the drivers
var Linting = require('./linting');
// expose the actual function
module.exports = exports = function(payload, fn) {
// get our lint
Linting.getSources(payload, function(err, resources) {
// parse out our list
Linting.parse(payload, resources || [], fn);
});
};