mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-07 20:31:06 -05:00
8 lines
145 B
TypeScript
8 lines
145 B
TypeScript
|
export function getRecurlyGroupPlanCode(
|
||
|
planCode: string,
|
||
|
size: string,
|
||
|
usage: string
|
||
|
) {
|
||
|
return `group_${planCode}_${size}_${usage}`
|
||
|
}
|