plugins/popn@asphyxia/handler/utils.ts
2020-12-12 15:09:57 +01:00

4 lines
144 B
TypeScript

export const getVersion = (info: EamuseInfo) => {
const moduleName: string = info.module;
return `v${moduleName.match(/[0-9]+/)[0]}`;
};