99ceaadf8b
* add hosting to first run, enable auto hosting * take welcomeVersion out of sync * app strings fix * recommended view hosting limit * small changes * fixes * appstrings * small fix
8 lines
274 B
JavaScript
8 lines
274 B
JavaScript
export function convertGbToMbStr(gb) {
|
|
return String(Number(gb) * 1024);
|
|
}
|
|
|
|
export function isValidHostingAmount(amountString) {
|
|
const numberAmount = Number(amountString);
|
|
return amountString.length && ((numberAmount && String(numberAmount)) || numberAmount === 0);
|
|
}
|