|
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160 |
- # unist-util-find-all-after
-
- [![Build][build-badge]][build]
- [![Coverage][coverage-badge]][coverage]
- [![Downloads][downloads-badge]][downloads]
- [![Sponsors][sponsors-badge]][collective]
- [![Backers][backers-badge]][collective]
- [![Chat][chat-badge]][chat]
- [![Size][size-badge]][size]
-
- [**unist**][unist] utility to find nodes after another node.
-
- ## Install
-
- [npm][]:
-
- ```sh
- npm install unist-util-find-all-after
- ```
-
- ## Use
-
- ```js
- var u = require('unist-builder')
- var findAllAfter = require('unist-util-find-all-after')
-
- var tree = u('tree', [
- u('leaf', 'leaf 1'),
- u('node', [u('leaf', 'leaf 2'), u('leaf', 'leaf 3')]),
- u('leaf', 'leaf 4'),
- u('node', [u('leaf', 'leaf 5')]),
- u('leaf', 'leaf 6'),
- u('void'),
- u('leaf', 'leaf 7')
- ])
-
- console.log(findAllAfter(tree, 1, 'leaf'))
- ```
-
- Yields:
-
- ```js
- [
- {type: 'leaf', value: 'leaf 4'},
- {type: 'leaf', value: 'leaf 6'},
- {type: 'leaf', value: 'leaf 7'}
- ]
- ```
-
- ## API
-
- ### `findAllAfter(parent, node|index[, test])`
-
- Find all children after `index` (or `node`) in `parent` that pass `test` (when
- given).
-
- ###### Parameters
-
- * `parent` ([`Node`][node]) — [Parent][] node
- * `node` ([`Node`][node]) — [Child][] of `parent`
- * `index` (`number`, optional) — [Index][] in `parent`
- * `test` (`Function`, `string`, `Object`, `Array`, optional)
- — See [`unist-util-is`][is]
-
- ###### Returns
-
- [`Array.<Node>`][node] — [Child][]ren of `parent` passing `test`.
-
- ## Related
-
- * [`unist-util-visit`](https://github.com/syntax-tree/unist-util-visit)
- — Recursively walk over nodes
- * [`unist-util-visit-parents`](https://github.com/syntax-tree/unist-util-visit-parents)
- — Like `visit`, but with a stack of parents
- * [`unist-util-filter`](https://github.com/syntax-tree/unist-util-filter)
- — Create a new tree with all nodes that pass a test
- * [`unist-util-map`](https://github.com/syntax-tree/unist-util-map)
- — Create a new tree with all nodes mapped by a given function
- * [`unist-util-flatmap`](https://gitlab.com/staltz/unist-util-flatmap)
- — Create a new tree by mapping (to an array) with the given function
- * [`unist-util-find-after`](https://github.com/syntax-tree/unist-util-find-after)
- — Find a node after another node
- * [`unist-util-find-before`](https://github.com/syntax-tree/unist-util-find-before)
- — Find a node before another node
- * [`unist-util-find-all-after`](https://github.com/syntax-tree/unist-util-find-all-after)
- — Find all nodes after another node
- * [`unist-util-find-all-before`](https://github.com/syntax-tree/unist-util-find-all-before)
- — Find all nodes before another node
- * [`unist-util-find-all-between`](https://github.com/mrzmmr/unist-util-find-all-between)
- — Find all nodes between two nodes
- * [`unist-util-remove`](https://github.com/syntax-tree/unist-util-remove)
- — Remove nodes from a tree that pass a test
- * [`unist-util-select`](https://github.com/syntax-tree/unist-util-select)
- — Select nodes with CSS-like selectors
-
- ## Contribute
-
- See [`contributing.md` in `syntax-tree/.github`][contributing] for ways to get
- started.
- See [`support.md`][support] for ways to get help.
-
- This project has a [code of conduct][coc].
- By interacting with this repository, organization, or community you agree to
- abide by its terms.
-
- ## License
-
- [MIT][license] © [Titus Wormer][author]
-
- <!-- Definitions -->
-
- [build-badge]: https://img.shields.io/travis/syntax-tree/unist-util-find-all-after.svg
-
- [build]: https://travis-ci.org/syntax-tree/unist-util-find-all-after
-
- [coverage-badge]: https://img.shields.io/codecov/c/github/syntax-tree/unist-util-find-all-after.svg
-
- [coverage]: https://codecov.io/github/syntax-tree/unist-util-find-all-after
-
- [downloads-badge]: https://img.shields.io/npm/dm/unist-util-find-all-after.svg
-
- [downloads]: https://www.npmjs.com/package/unist-util-find-all-after
-
- [size-badge]: https://img.shields.io/bundlephobia/minzip/unist-util-find-all-after.svg
-
- [size]: https://bundlephobia.com/result?p=unist-util-find-all-after
-
- [sponsors-badge]: https://opencollective.com/unified/sponsors/badge.svg
-
- [backers-badge]: https://opencollective.com/unified/backers/badge.svg
-
- [collective]: https://opencollective.com/unified
-
- [chat-badge]: https://img.shields.io/badge/chat-discussions-success.svg
-
- [chat]: https://github.com/syntax-tree/unist/discussions
-
- [npm]: https://docs.npmjs.com/cli/install
-
- [license]: license
-
- [author]: https://wooorm.com
-
- [unist]: https://github.com/syntax-tree/unist
-
- [node]: https://github.com/syntax-tree/unist#node
-
- [parent]: https://github.com/syntax-tree/unist#parent-1
-
- [child]: https://github.com/syntax-tree/unist#child
-
- [index]: https://github.com/syntax-tree/unist#index
-
- [is]: https://github.com/syntax-tree/unist-util-is
-
- [contributing]: https://github.com/syntax-tree/.github/blob/HEAD/contributing.md
-
- [support]: https://github.com/syntax-tree/.github/blob/HEAD/support.md
-
- [coc]: https://github.com/syntax-tree/.github/blob/HEAD/code-of-conduct.md
|