fix(core): update

This commit is contained in:
Philipp Kunz 2019-07-09 00:42:23 +02:00
parent 54304065b0
commit 0acb2bcf49

View File

@ -1,3 +1,5 @@
import * as plugins from './smartmoney.plugins';
export let standardExport = 'Hi there! :) This is an exported string';
export const parseEuropeanNumberString = (europeanNumberString: string): number => {
return parseFloat(europeanNumberString.replace('.', '').replace(',', '.'));
};