mirror of
https://github.com/ecency/ecency-mobile.git
synced 2024-12-20 11:51:52 +03:00
8 lines
119 B
JavaScript
8 lines
119 B
JavaScript
export default (strVal) => {
|
|
if (!strVal) {
|
|
return 0;
|
|
}
|
|
|
|
return Number(parseFloat(strVal.split(' ')[0]));
|
|
};
|