UNPKG

hast-util-phrasing

Version:

hast utility to check if a node is phrasing content

11 lines (10 loc) 261 B
/** * Check if the given value is *phrasing* content. * * @param {Nodes} value * Node to check. * @returns {boolean} * Whether `value` is phrasing content. */ export function phrasing(value: Nodes): boolean; export type Nodes = import('hast').Nodes;