Package Exports
- hast-util-is-element
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (hast-util-is-element) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
hast-util-is-element
hast utility to check if a node is a (certain) element.
Install
npm:
npm install hast-util-is-element
Usage
var is = require('hast-util-is-element')
is({type: 'text', value: 'foo'}) // => false
is({type: 'element', tagName: 'a'}, 'a') // => true
is({type: 'element', tagName: 'a'}, ['a', 'area']) // => true
API
isElement(node[, tagName|tagNames])
Check if the given value is a (certain) element.
- When given a
tagName
ortagNames
, checks thatnode
is an element whosetagName
field matchestagName
or is included intagNames
- Otherwise checks that
node
is an element
Parameters
node
(*
) — Value to check, probablyNode
tagName
(string
, optional) — Value thatnode
stagName
field should matchtagNames
(Array.<string>
, optional) — Values that should includenode
stagName
field should match
Returns
boolean
— whether node
passes the test.
Throws
Error
— When the second parameter is given but invalid.
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.