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.

Contents

What is this?

This is a tiny utility that you can use to count nodes (that pass a test) in a tree.

When should I use this?

This is super tiny but a sometimes common problem. You can use unist-util-visit yourself as well.

Install

This package is ESM only. In Node.js (version 12.20+, 14.14+, 16.0+, 18.0+), install with npm:

npm install unist-util-size

In Deno with esm.sh:

import {size} from "https://esm.sh/unist-util-size@3"

In browsers with esm.sh:

<script type="module">
  import {size} from "https://esm.sh/unist-util-size@3?bundle"
</script>

Use

import {h} from 'hastscript'
import {size} from 'unist-util-size'

const 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

This package exports the identifier size. There is no default export.

size(node[, test])

Calculate the number of nodes in node (Node) that pass the optional unist-util-is-compatible Test.

Returns

Exclusive descendants of node that pass test (number).

Types

This package is fully typed with TypeScript. It exports no additional types.

Compatibility

Projects maintained by the unified collective are compatible with all maintained versions of Node.js. As of now, that is Node.js 12.20+, 14.14+, 16.0+, and 18.0+. Our projects sometimes work with older versions, but this is not guaranteed.

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

  •  
  •