Files
Agent-n8n/backups/exhibition-demo-backup-20250928-210916/node_modules/unist-util-is/readme.md
Yep_Q 67f5dfbe50 feat: 实现多订单班支持系统
主要功能:
- 修改RequirementModal支持12个订单班选择
- 添加OrderClassIconMap图标映射组件
- Store中添加selectedOrderClass状态管理
- WorkflowPage支持传递orderClass参数
- web_result添加URL参数切换功能
- 创建order-class-handler.js动态处理页面主题

技术改进:
- 创建软链接关联订单班数据目录
- 生成wenlu.json和food.json数据结构
- 删除重复的web_result目录
- 添加测试页面test-order-class.html

影响范围:
- 展会策划系统现支持12个订单班
- 结果展示页面自动适配不同订单班主题
- 用户可选择不同行业生成对应方案

🤖 Generated with Claude Code

Co-Authored-By: Claude <noreply@anthropic.com>
2025-09-29 10:02:15 +08:00

352 lines
8.8 KiB
Markdown
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# unist-util-is
[![Build][build-badge]][build]
[![Coverage][coverage-badge]][coverage]
[![Downloads][downloads-badge]][downloads]
[![Size][size-badge]][size]
[![Sponsors][sponsors-badge]][collective]
[![Backers][backers-badge]][collective]
[![Chat][chat-badge]][chat]
[unist][] utility to check if nodes pass a test.
## Contents
* [What is this?](#what-is-this)
* [When should I use this?](#when-should-i-use-this)
* [Install](#install)
* [Use](#use)
* [API](#api)
* [`is(node[, test[, index, parent[, context]]])`](#isnode-test-index-parent-context)
* [`convert(test)`](#converttest)
* [`Check`](#check)
* [`Test`](#test)
* [`TestFunction`](#testfunction)
* [Examples](#examples)
* [Example of `convert`](#example-of-convert)
* [Types](#types)
* [Compatibility](#compatibility)
* [Related](#related)
* [Contribute](#contribute)
* [License](#license)
## What is this?
This package is a small utility that checks that a node is a certain node.
## When should I use this?
Use this small utility if you find yourself repeating code for checking what
nodes are.
A similar package, [`hast-util-is-element`][hast-util-is-element], works on hast
elements.
For more advanced tests, [`unist-util-select`][unist-util-select] can be used
to match against CSS selectors.
## Install
This package is [ESM only][esm].
In Node.js (version 16+), install with [npm][]:
```sh
npm install unist-util-is
```
In Deno with [`esm.sh`][esmsh]:
```js
import {is} from 'https://esm.sh/unist-util-is@6'
```
In browsers with [`esm.sh`][esmsh]:
```html
<script type="module">
import {is} from 'https://esm.sh/unist-util-is@6?bundle'
</script>
```
## Use
```js
import {is} from 'unist-util-is'
const node = {type: 'strong'}
const parent = {type: 'paragraph', children: [node]}
is() // => false
is({children: []}) // => false
is(node) // => true
is(node, 'strong') // => true
is(node, 'emphasis') // => false
is(node, node) // => true
is(parent, {type: 'paragraph'}) // => true
is(parent, {type: 'strong'}) // => false
is(node, test) // => false
is(node, test, 4, parent) // => false
is(node, test, 5, parent) // => true
function test(node, n) {
return n === 5
}
```
## API
This package exports the identifiers [`convert`][api-convert] and
[`is`][api-is].
There is no default export.
### `is(node[, test[, index, parent[, context]]])`
Check if `node` is a `Node` and whether it passes the given test.
###### Parameters
* `node` (`unknown`, optional)
— thing to check, typically [`Node`][node]
* `test` ([`Test`][api-test], optional)
— a test for a specific element
* `index` (`number`, optional)
— the nodes position in its parent
* `parent` ([`Node`][node], optional)
— the nodes parent
* `context` (`unknown`, optional)
— context object (`this`) to call `test` with
###### Returns
Whether `node` is a [`Node`][node] and passes a test (`boolean`).
###### Throws
When an incorrect `test`, `index`, or `parent` is given.
There is no error thrown when `node` is not a node.
### `convert(test)`
Generate a check from a test.
Useful if youre going to test many nodes, for example when creating a
utility where something else passes a compatible test.
The created function is a bit faster because it expects valid input only:
a `node`, `index`, and `parent`.
###### Parameters
* `test` ([`Test`][api-test], optional)
— a test for a specific node
###### Returns
A check ([`Check`][api-check]).
### `Check`
Check that an arbitrary value is a node (TypeScript type).
###### Parameters
* `this` (`unknown`, optional)
— context object (`this`) to call `test` with
* `node` (`unknown`)
— anything (typically a node)
* `index` (`number`, optional)
— the nodes position in its parent
* `parent` ([`Node`][node], optional)
— the nodes parent
###### Returns
Whether this is a node and passes a test (`boolean`).
### `Test`
Check for an arbitrary node (TypeScript type).
###### Type
```ts
type Test =
| Array<Record<string, unknown> | TestFunction | string>
| Record<string, unknown>
| TestFunction
| string
| null
| undefined
```
Checks that the given thing is a node, and then:
* when `string`, checks that the node has that tag name
* when `function`, see [`TestFunction`][api-test-function]
* when `object`, checks that all keys in test are in node, and that they have
(strictly) equal values
* when `Array`, checks if one of the subtests pass
### `TestFunction`
Check if a node passes a test (TypeScript type).
###### Parameters
* `node` ([`Node`][node])
— a node
* `index` (`number` or `undefined`)
— the nodes position in its parent
* `parent` ([`Node`][node] or `undefined`)
— the nodes parent
###### Returns
Whether this node passes the test (`boolean`, optional).
## Examples
### Example of `convert`
```js
import {u} from 'unist-builder'
import {convert} from 'unist-util-is'
const test = convert('leaf')
const tree = u('tree', [
u('node', [u('leaf', '1')]),
u('leaf', '2'),
u('node', [u('leaf', '3'), u('leaf', '4')]),
u('leaf', '5')
])
const leafs = tree.children.filter(function (child, index) {
return test(child, index, tree)
})
console.log(leafs)
```
Yields:
```js
[{type: 'leaf', value: '2'}, {type: 'leaf', value: '5'}]
```
## Types
This package is fully typed with [TypeScript][].
It exports the additional types [`Check`][api-check],
[`Test`][api-test],
[`TestFunction`][api-test-function].
## 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-is@^6`,
compatible with Node.js 16.
## Related
* [`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-filter`](https://github.com/syntax-tree/unist-util-filter)
— create a new tree with nodes that pass a check
* [`unist-util-remove`](https://github.com/syntax-tree/unist-util-remove)
— remove nodes from tree
## Contribute
See [`contributing.md`][contributing] in [`syntax-tree/.github`][health] 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://github.com/syntax-tree/unist-util-is/workflows/main/badge.svg
[build]: https://github.com/syntax-tree/unist-util-is/actions
[coverage-badge]: https://img.shields.io/codecov/c/github/syntax-tree/unist-util-is.svg
[coverage]: https://codecov.io/github/syntax-tree/unist-util-is
[downloads-badge]: https://img.shields.io/npm/dm/unist-util-is.svg
[downloads]: https://www.npmjs.com/package/unist-util-is
[size-badge]: https://img.shields.io/badge/dynamic/json?label=minzipped%20size&query=$.size.compressedSize&url=https://deno.bundlejs.com/?q=unist-util-is
[size]: https://bundlejs.com/?q=unist-util-is
[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
[esm]: https://gist.github.com/sindresorhus/a39789f98801d908bbc7ff3ecc99d99c
[esmsh]: https://esm.sh
[typescript]: https://www.typescriptlang.org
[license]: license
[author]: https://wooorm.com
[health]: https://github.com/syntax-tree/.github
[contributing]: https://github.com/syntax-tree/.github/blob/main/contributing.md
[support]: https://github.com/syntax-tree/.github/blob/main/support.md
[coc]: https://github.com/syntax-tree/.github/blob/main/code-of-conduct.md
[unist]: https://github.com/syntax-tree/unist
[node]: https://github.com/syntax-tree/unist#node
[hast-util-is-element]: https://github.com/syntax-tree/hast-util-is-element
[unist-util-select]: https://github.com/syntax-tree/unist-util-select
[api-convert]: #converttest
[api-is]: #isnode-test-index-parent-context
[api-check]: #check
[api-test]: #test
[api-test-function]: #testfunction