Giter VIP home page Giter VIP logo

unist-util-find's Introduction

unist-util-find

Build Coverage Downloads Size Sponsors Backers Chat

unist utility to find a node.

Contents

What is this?

This package is a utility that takes any unist (whether mdast, hast, etc) node and returns the first node that matches a given condition.

When should I use this?

This utility is the simplest way to find a single node in a tree.

For much more powerful tree walking, see unist-util-visit.

Install

This package is ESM only. In Node.js (version 16+), install with npm:

npm install unist-util-find

In Deno with esm.sh:

import {find} from 'https://esm.sh/unist-util-find@3'

In browsers with esm.sh:

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

Use

import {fromMarkdown} from 'mdast-util-from-markdown'
import {find} from 'unist-util-find'

const tree = fromMarkdown('Some _emphasis_, **strongness**, and `code`.')

// String condition:
console.log(find(tree, 'value'))

// Object condition:
console.log(find(tree, {value: 'emphasis'}))

// Function condition:
console.log(
  find(tree, function (node) {
    return node.type === 'inlineCode'
  })
)

Yields:

// string condition: 'value'
{
  type: 'text',
  value: 'Some ',
  position: {
    start: { line: 1, column: 1, offset: 0 },
    end: { line: 1, column: 6, offset: 5 }
  }
}

// object condition: { value: 'emphasis' }
{
  type: 'text',
  value: 'emphasis',
  position: {
    start: { line: 1, column: 7, offset: 6 },
    end: { line: 1, column: 15, offset: 14 }
  }
}

// function condition: function (node) { return node.type === 'inlineCode' }
{
  type: 'inlineCode',
  value: 'code',
  position: {
    start: { line: 1, column: 38, offset: 37 },
    end: { line: 1, column: 44, offset: 43 }
  }
}

API

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

find(tree, condition)

Find a node in tree matching condition.

Parameters
Returns

The first node (Node) that matches condition, or undefined if no node matches

TestFn

Find the first node for which function returns true when passed node as argument (TypeScript type).

Parameters
  • node (Node) — node to check
Returns

Whether node matches your condition (boolean).

TestObj

Find the first node that has matching values for all properties of object (TypeScript type).

Type
type TestObj = Record<string, unknown>;

TestStr

Find the first node with a truthy property matching string (TypeScript type).

Type
type TestStr = string;

Types

This package is fully typed with TypeScript. It exports the additional types TestFn, TestObj, and TestStr.

Compatibility

Projects maintained by the unified collective are compatible with maintained versions of Node.js.

When we cut a new major release, we drop support for unmaintained versions of Node. This means we try to keep the current release line, unist-util-find@^3, compatible with Node.js 16.

Security

This project is safe.

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 © Richard Smith-Unna

unist-util-find's People

Contributors

wooorm avatar blahah avatar crutchcorn avatar paescuj avatar

Stargazers

Remco Haszing avatar Matija Marohnić avatar  avatar Brian Burns avatar  avatar Santhosh Veer avatar Alvin Bryan avatar Lex avatar Tenvi avatar lin onetwo avatar Minh-Phuc Tran avatar Chris Zhou avatar  avatar Vlad Trukhin avatar Josh Black avatar Jarrod Davis avatar Mathieu M-Gosselin avatar Chris Watson avatar David Clark avatar Paul Zimmer avatar  avatar

Watchers

Remco Haszing avatar  avatar James Cloos avatar Richard Littauer avatar  avatar Keith McKnight avatar John Otander avatar Christian Murphy avatar JounQin avatar Merlijn Vos avatar  avatar

unist-util-find's Issues

Type 'Node' is not generic.

Version 1.0.3

Have an error during the build command:

npm ERR! ../../unist-util-find/index.d.ts(16,33): error TS2315: Type 'Node' is not generic.
npm ERR! ../../unist-util-find/index.d.ts(28,33): error TS2315: Type 'Node' is not generic.
npm ERR! ../../unist-util-find/index.d.ts(28,83): error TS2315: Type 'Node' is not generic.

publish 1.0.2 from current master?

Can we get a 1.0.2 release? It looks like a minor issue (removal/update of a sub-dependency that has a CVE against it) is solved by that. 1.0.1 is not vulnerable, but having the updated dependencies in production will make auditing easier.

Ts type?

Seems this util package didn't generate dts file like other packages.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.