salix-front/src/composables/useAccountShortToStandard.js

5 lines
161 B
JavaScript

export function useAccountShortToStandard(val) {
if (!val || !/^\d+(\.\d*)$/.test(val)) return;
return val?.replace('.', '0'.repeat(11 - val.length));
}