Skip to content

syntax-tree/unist-util-size

Repository files navigation

unist-util-size

Build Coverage Downloads Size Sponsors Backers Chat

unist utility to calculate the number of nodes in a tree.

Install

npm:

npm install unist-util-size

Use

var h = require('hastscript')
var size = require('unist-util-size')

var tree = h('div', [
  h('p', [
    'Some ',
    h('strong', 'importance'),
    ' and ',
    h('em', 'emphasis'),
    '.'
  ]),
  h('pre', h('code', 'bar()'))
])

console.log(size(tree)) // => 11
console.log(size(tree, 'element')) // => 5

API

size(tree[, test])

Calculate the number of nodes in tree.

Parameters
  • tree (Node) — Tree to traverse
  • test (Test, optional) — is-compatible test (such as a node type)
Returns

number — Number of exclusive descendants passing test in tree.

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, organisation, or community you agree to abide by its terms.

License

MIT © Titus Wormer

About

utility to calculate the number of nodes in a tree

Topics

Resources

License

Code of conduct

Security policy

Stars

Watchers

Forks

Contributors 2

  •  
  •