unist-util-is:检查节点是否通过测试的实用程序

时间:2024-03-27 16:12:53
【文件属性】:

文件名称:unist-util-is:检查节点是否通过测试的实用程序

文件大小:12KB

文件格式:ZIP

更新时间:2024-03-27 16:12:53

is equality syntax-tree util unist

Unist-util-is 实用程序,用于检查节点是否通过测试。 安装 : npm install unist-util-is 使用 var is = require ( 'unist-util-is' ) var node = { type : 'strong' } var parent = { type : 'paragraph' , children : [ node ] } function test ( node , n ) { return n === 5 } is ( ) // => false is ( { children : [ ] } ) // => false is ( node ) // => true is ( node , 'strong' ) // => true is ( node , 'emphasis' ) // => false is (


【文件预览】:
unist-util-is-main
----.github()
--------workflows()
----convert.js(1KB)
----.prettierignore(60B)
----convert.d.ts(156B)
----license(1KB)
----tsconfig.json(202B)
----test()
--------main.js(3KB)
--------property.js(2KB)
--------index.js(89B)
----tslint.json(106B)
----index.d.ts(2KB)
----unist-util-is-test.ts(4KB)
----.npmrc(19B)
----.editorconfig(147B)
----.gitignore(101B)
----index.js(791B)
----readme.md(6KB)
----package.json(3KB)

网友评论