mirror of
https://github.com/Jerryplusy/rc-plugin.git
synced 2025-10-14 08:09:19 +00:00
14 lines
377 B
JavaScript
14 lines
377 B
JavaScript
/**
|
|
* 将只有string的数组转换为原生的 {Bot.makeForwardMsg}
|
|
* @param e
|
|
* @param textArray {string[]}
|
|
*/
|
|
export function textArrayToMakeForward(e, textArray) {
|
|
return textArray.map(item => {
|
|
return {
|
|
message: { type: "text", text: item },
|
|
nickname: e.sender.card || e.user_id,
|
|
user_id: e.user_id,
|
|
};
|
|
})
|
|
} |