文件名称:unist-util-visit:访问节点的实用程序
文件大小:10KB
文件格式:ZIP
更新时间:2024-05-18 13:02:44
syntax-tree util visit unist walk
访问者 访问节点的实用程序。 安装 该软件包 :需要使用Node 12+才能使用它,并且必须将其import而不是require d。 : npm install unist-util-visit 用 import { u } from 'unist-builder' import { visit } from 'unist-util-visit' const tree = u ( 'tree' , [ u ( 'leaf' , '1' ) , u ( 'node' , [ u ( 'leaf' , '2' ) ] ) , u ( 'void' ) , u ( 'leaf' , '3' ) ] ) visit ( tree , 'leaf' , ( node ) => { console . log ( node ) } ) 产量: { type : 'le
【文件预览】:
unist-util-visit-main
----index.js(3KB)
----test.js(9KB)
----package.json(2KB)
----index.test-d.ts(3KB)
----readme.md(4KB)
----.github()
--------workflows()
----.prettierignore(15B)
----license(1KB)
----tsconfig.json(324B)
----.gitignore(57B)
----.npmrc(19B)
----.editorconfig(147B)