web 3d图形渲染器
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.

15 lines
432 B

  1. "use strict";
  2. Object.defineProperty(exports, "__esModule", {
  3. value: true
  4. });
  5. exports.getNodeText = getNodeText;
  6. var _helpers = require("./helpers");
  7. function getNodeText(node) {
  8. if (node.matches('input[type=submit], input[type=button]')) {
  9. return node.value;
  10. }
  11. return Array.from(node.childNodes).filter(child => child.nodeType === _helpers.TEXT_NODE && Boolean(child.textContent)).map(c => c.textContent).join('');
  12. }