You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
444 B

const getAttribute = require("./get-attribute");
const findTagByName = require("./find-tag-by-name");
const findTagsByName = require("./find-tags-by-name");
const findTagByPath = require("./find-tag-by-path");
const findTagsByPath = require("./find-tags-by-path");
const removeComments = require("./remove-comments");
module.exports = {
getAttribute,
findTagByName,
findTagsByName,
findTagByPath,
findTagsByPath,
removeComments
};