mirror of
https://iceshrimp.dev/limepotato/jormungandr-bite.git
synced 2024-11-23 10:27:28 -07:00
13 lines
340 B
TypeScript
13 lines
340 B
TypeScript
// test is located in test/extract-mentions
|
|
|
|
import * as mfm from "mfm-js";
|
|
|
|
export function extractMentions(
|
|
nodes: mfm.MfmNode[],
|
|
): mfm.MfmMention["props"][] {
|
|
// TODO: 重複を削除
|
|
const mentionNodes = mfm.extract(nodes, (node) => node.type === "mention");
|
|
const mentions = mentionNodes.map((x) => x.props);
|
|
|
|
return mentions;
|
|
}
|