mdast-util-is-type

Simple helpers to resolve MDAST types. Includes typescript types.

Usage no npm install needed!

<script type="module">
  import mdastUtilIsType from 'https://cdn.skypack.dev/mdast-util-is-type';
</script>

README

mdast-util-is-type

Simple helpers to resolve MDAST types. Includes typescript types.

These functions are incredibly simple, for example:

export const isHeading = (node: any): node is Heading => {
  return node.type === 'heading';
};

They can be used as type predicates. They're all single exports and so should play nicely with tree shaking tools.