unist-util-visit

WebJar for unist-util-visit

License

License

MIT
GroupId

GroupId

org.webjars.bower
ArtifactId

ArtifactId

unist-util-visit
Last Version

Last Version

1.3.1
Release Date

Release Date

Type

Type

jar
Description

Description

unist-util-visit
WebJar for unist-util-visit
Project URL

Project URL

http://webjars.org
Source Code Management

Source Code Management

https://github.com/syntax-tree/unist-util-visit

Download unist-util-visit

How to add to project

<!-- https://jarcasting.com/artifacts/org.webjars.bower/unist-util-visit/ -->
<dependency>
    <groupId>org.webjars.bower</groupId>
    <artifactId>unist-util-visit</artifactId>
    <version>1.3.1</version>
</dependency>
// https://jarcasting.com/artifacts/org.webjars.bower/unist-util-visit/
implementation 'org.webjars.bower:unist-util-visit:1.3.1'
// https://jarcasting.com/artifacts/org.webjars.bower/unist-util-visit/
implementation ("org.webjars.bower:unist-util-visit:1.3.1")
'org.webjars.bower:unist-util-visit:jar:1.3.1'
<dependency org="org.webjars.bower" name="unist-util-visit" rev="1.3.1">
  <artifact name="unist-util-visit" type="jar" />
</dependency>
@Grapes(
@Grab(group='org.webjars.bower', module='unist-util-visit', version='1.3.1')
)
libraryDependencies += "org.webjars.bower" % "unist-util-visit" % "1.3.1"
[org.webjars.bower/unist-util-visit "1.3.1"]

Dependencies

compile (1)

Group / Artifact Type Version
org.webjars.bower : unist-util-is jar [2.1.1,3)

Project Modules

There are no modules declared in this project.

unist-util-visit

Build Coverage Downloads Size Sponsors Backers Chat

unist utility to visit nodes.

Install

npm:

npm install unist-util-visit

Use

var u = require('unist-builder')
var visit = require('unist-util-visit')

var tree = u('tree', [
  u('leaf', '1'),
  u('node', [u('leaf', '2')]),
  u('void'),
  u('leaf', '3')
])

visit(tree, 'leaf', function(node) {
  console.log(node)
})

Yields:

{ type: 'leaf', value: '1' }
{ type: 'leaf', value: '2' }
{ type: 'leaf', value: '3' }

API

visit(tree[, test], visitor[, reverse])

This function works exactly the same as unist-util-visit-parents, but visitor has a different signature.

next? = visitor(node, index, parent)

Instead of being passed an array of ancestors, visitor is invoked with the node’s index and its parent.

Otherwise the same as unist-util-visit-parents.

Related

Contribute

See contributing.md in syntax-tree/.github for ways to get started. See support.md for ways to get help.

This project has a code of conduct. By interacting with this repository, organization, or community you agree to abide by its terms.

License

MIT © Titus Wormer

org.webjars.bower
🌲🌲🌲🌳🌲🌳🌲🌲🌲🌳🌳🌲🌲🌳🌲🌲🎄🌲🌳🌲🌲🌳🐻🌳🌳🌳🌲🌲🌳🌲🎄🌲🌳🌲🌲🌳🌳🌳

Versions

Version
1.3.1