6 lines
147 B
TypeScript
6 lines
147 B
TypeScript
export const converUnitCount = (count, unit) => {
|
|
const converCount = count;
|
|
const converUnit = unit;
|
|
return { converCount, converUnit };
|
|
};
|