egirlskey/packages/backend/src/misc/extract-hashtags.ts

10 lines
332 B
TypeScript
Raw Normal View History

import * as mfm from 'mfm-js';
2022-09-17 18:27:08 +00:00
import { unique } from '@/misc/prelude/array.js';
export function extractHashtags(nodes: mfm.MfmNode[]): string[] {
2023-02-01 08:29:28 +00:00
const hashtagNodes = mfm.extract(nodes, (node) => node.type === 'hashtag') as mfm.MfmHashtag[];
const hashtags = unique(hashtagNodes.map(x => x.props.hashtag));
return hashtags;
}