index.js 444 B

123456789101112131415
  1. const getAttribute = require("./get-attribute");
  2. const findTagByName = require("./find-tag-by-name");
  3. const findTagsByName = require("./find-tags-by-name");
  4. const findTagByPath = require("./find-tag-by-path");
  5. const findTagsByPath = require("./find-tags-by-path");
  6. const removeComments = require("./remove-comments");
  7. module.exports = {
  8. getAttribute,
  9. findTagByName,
  10. findTagsByName,
  11. findTagByPath,
  12. findTagsByPath,
  13. removeComments
  14. };