Sha256: 6cc39786855bef84acb6716c9400989f559a80acd8f7f118983c2e74680ba5c9

Contents?: true

Size: 542 Bytes

Versions: 46

Compression:

Stored size: 542 Bytes

Contents

"use strict";
const { domSymbolTree } = require("./internal-constants");
const { CDATA_SECTION_NODE, TEXT_NODE } = require("../node-type");

//
// https://dom.spec.whatwg.org/#concept-child-text-content
//
exports.childTextContent = node => {
  let result = "";
  const iterator = domSymbolTree.childrenIterator(node);
  for (const child of iterator) {
    if (child.nodeType === TEXT_NODE ||
        // The CDataSection extends Text.
        child.nodeType === CDATA_SECTION_NODE) {
      result += child.data;
    }
  }
  return result;
};

Version data entries

46 entries across 46 versions & 2 rubygems

Version Path
clapton-0.0.6 lib/clapton/javascripts/node_modules/jsdom/lib/jsdom/living/helpers/text.js
clapton-0.0.5 lib/clapton/javascripts/node_modules/jsdom/lib/jsdom/living/helpers/text.js
clapton-0.0.4 lib/clapton/javascripts/node_modules/jsdom/lib/jsdom/living/helpers/text.js
clapton-0.0.3 lib/clapton/javascripts/node_modules/jsdom/lib/jsdom/living/helpers/text.js
clapton-0.0.2 lib/clapton/javascripts/node_modules/jsdom/lib/jsdom/living/helpers/text.js
clapton-0.0.1 lib/clapton/javascripts/node_modules/jsdom/lib/jsdom/living/helpers/text.js
appmap-0.72.2 ./node_modules/jsdom/lib/jsdom/living/helpers/text.js
appmap-0.72.1 ./node_modules/jsdom/lib/jsdom/living/helpers/text.js
appmap-0.72.0 ./node_modules/jsdom/lib/jsdom/living/helpers/text.js
appmap-0.71.0 ./node_modules/jsdom/lib/jsdom/living/helpers/text.js
appmap-0.70.2 ./node_modules/jsdom/lib/jsdom/living/helpers/text.js
appmap-0.70.1 ./node_modules/jsdom/lib/jsdom/living/helpers/text.js
appmap-0.70.0 ./node_modules/jsdom/lib/jsdom/living/helpers/text.js
appmap-0.69.0 ./node_modules/jsdom/lib/jsdom/living/helpers/text.js
appmap-0.68.2 ./node_modules/jsdom/lib/jsdom/living/helpers/text.js
appmap-0.68.1 ./node_modules/jsdom/lib/jsdom/living/helpers/text.js
appmap-0.68.0 ./node_modules/jsdom/lib/jsdom/living/helpers/text.js
appmap-0.67.1 ./node_modules/jsdom/lib/jsdom/living/helpers/text.js
appmap-0.67.0 ./node_modules/jsdom/lib/jsdom/living/helpers/text.js
appmap-0.66.2 ./node_modules/jsdom/lib/jsdom/living/helpers/text.js