JSPM

  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 769555
  • Score
    100M100P100Q213660F
  • License MIT

Unist utility to visit direct children of a parent

Package Exports

  • unist-util-visit-children

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (unist-util-visit-children) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

unist-util-visit-children Build Status Coverage Status

Unist direct child visitor.

Installation

npm:

npm install unist-util-visit-children

Usage

var remark = require('remark');
var visitChildren = require('unist-util-visit-children');

var visit = visitChildren(console.log);

remark().use(plugin).processSync('Some _emphasis_, **importance**, and `code`.');

function plugin() {
  return transformer;
  function transformer(tree) {
    visit(tree.children[0]);
  }
}

Yields:

{ type: 'text', value: 'Some ' }
{ type: 'emphasis',
  children: [ { type: 'text', value: 'emphasis' } ] }
{ type: 'text', value: ', ' }
{ type: 'strong',
  children: [ { type: 'text', value: 'importance' } ] }
{ type: 'text', value: ', and ' }
{ type: 'inlineCode', value: 'code' }
{ type: 'text', value: '.' }

API

visit = visitChildren(visitor)

Wrap visitor to be invoked for each child in the node given to visit.

function visitor(child, index, parent)

Invoked if visit is called on a parent node for each child in parent.

function visit(parent)

Invoke the bound visitor for each child in parent (Node).

License

MIT © Titus Wormer