UNPKG

react-native-markdown-renderer

Version:

Markdown renderer for react-native, with CommonMark spec support + adds syntax extensions & sugar (URL autolinking, typographer).

4 lines (3 loc) 155 B
export default function hasParents(parents: Array<{ type: string }>, type: string): boolean { return parents.findIndex((el) => el.type === type) > -1; }