New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

unist-util-find-all-before

Package Overview
Dependencies
Maintainers
2
Versions
13
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

unist-util-find-all-before

unist utility to find nodes before another node

  • 4.0.1
  • Source
  • npm
  • Socket score

Version published
Maintainers
2
Created
Source

unist-util-find-all-before

Build Coverage Downloads Size Sponsors Backers Chat

unist utility to find nodes before another node.

Contents

What is this?

This is a tiny utility that you can use to find nodes before another node or before an index in a parent.

When should I use this?

This is super tiny. You can of course do it yourself. But this helps when integrating with the rest of unified and unist.

Install

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

npm install unist-util-find-all-before

In Deno with esm.sh:

import {findAllBefore} from 'https://esm.sh/unist-util-find-all-before@4'

In browsers with esm.sh:

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

Use

import {u} from 'unist-builder'
import {findAllBefore} from 'unist-util-find-all-before'

const tree = u('tree', [
  u('leaf', 'leaf 1'),
  u('parent', [u('leaf', 'leaf 2'), u('leaf', 'leaf 3')]),
  u('leaf', 'leaf 4'),
  u('parent', [u('leaf', 'leaf 5')]),
  u('leaf', 'leaf 6'),
  u('empty'),
  u('leaf', 'leaf 7')
])

const leaf6 = tree.children[4]

console.log(findAllBefore(tree, leaf6, 'leaf'))

Yields:

[
  { type: 'leaf', value: 'leaf 1' },
  { type: 'leaf', value: 'leaf 4' }
]

API

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

findAllBefore(parent, child|index[, test])

Find the nodes in parent before another node or before an index, that pass test.

Parameters
  • parent (Node) — parent node
  • index (number) — index of child in parent
  • child (Node) — child in parent
  • test (Test) — unist-util-is-compatible test
Returns

Children of parent (Array<Node>).

Types

This package is fully typed with TypeScript. It exports no additional types (types for the test are in unist-util-is).

Compatibility

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

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

Keywords

FAQs

Package last updated on 24 Jan 2023

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc